summaryrefslogtreecommitdiff
path: root/typelibrary.cpp
diff options
context:
space:
mode:
authorRyan Snyder <ryan@vector35.com>2023-07-18 12:09:21 -0400
committerRyan Snyder <ryan@vector35.com>2023-08-23 20:05:05 -0400
commitb116310afbb1940e2a13a3a2625a9069d7b489b9 (patch)
treece5db8e49d2fda5a783f5a766ed6a9cd13c61840 /typelibrary.cpp
parent37df2e956d3c6b0008b72dfe915d36c63f694e30 (diff)
typelibrary: add methods for dependency info
Diffstat (limited to 'typelibrary.cpp')
-rw-r--r--typelibrary.cpp9
1 files changed, 0 insertions, 9 deletions
diff --git a/typelibrary.cpp b/typelibrary.cpp
index 5c81705f..73db3966 100644
--- a/typelibrary.cpp
+++ b/typelibrary.cpp
@@ -20,15 +20,6 @@ bool TypeLibrary::DecompressToFile(const std::string& path, const std::string& o
}
-std::string TypeLibrary::Decompress(const std::string& path)
-{
- auto str = BNTypeLibraryDecompressToString(path.c_str());
- std::string result = str;
- BNFreeString(str);
- return result;
-}
-
-
Ref<TypeLibrary> TypeLibrary::LoadFromFile(const std::string& path)
{
return new TypeLibrary(BNLoadTypeLibraryFromFile(path.c_str()));