From b116310afbb1940e2a13a3a2625a9069d7b489b9 Mon Sep 17 00:00:00 2001 From: Ryan Snyder Date: Tue, 18 Jul 2023 12:09:21 -0400 Subject: typelibrary: add methods for dependency info --- typelibrary.cpp | 9 --------- 1 file changed, 9 deletions(-) (limited to 'typelibrary.cpp') 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::LoadFromFile(const std::string& path) { return new TypeLibrary(BNLoadTypeLibraryFromFile(path.c_str())); -- cgit v1.3.1