summaryrefslogtreecommitdiff
path: root/binaryninjaapi.h
diff options
context:
space:
mode:
authorJosh Ferrell <josh@vector35.com>2024-08-28 14:52:31 -0400
committerJosh Ferrell <josh@vector35.com>2024-08-28 14:52:31 -0400
commitd041e78a06686290aaa4a465dffe3a0ae648ba02 (patch)
tree7c8338162af29c414cb8c4011133f13c1b54398a /binaryninjaapi.h
parent18445ef846437fa52f9ebaa54109c8abc551c49d (diff)
Add RemoteFolder C++ APIs
Diffstat (limited to 'binaryninjaapi.h')
-rw-r--r--binaryninjaapi.h9
1 files changed, 9 insertions, 0 deletions
diff --git a/binaryninjaapi.h b/binaryninjaapi.h
index 70d40b47..3c6bc72a 100644
--- a/binaryninjaapi.h
+++ b/binaryninjaapi.h
@@ -18217,6 +18217,15 @@ namespace BinaryNinja::Collaboration
{
public:
RemoteFolder(BNRemoteFolder* remoteFolder);
+
+ Ref<ProjectFolder> GetCoreFolder();
+ Ref<RemoteProject> GetProject();
+ Ref<RemoteFolder> GetParent();
+ Ref<Remote> GetRemote();
+ std::string GetId();
+ std::string GetUrl();
+ std::string GetName();
+ std::string GetDescription();
};
class RemoteFile;