summaryrefslogtreecommitdiff
path: root/binaryninjaapi.h
diff options
context:
space:
mode:
authorPeter LaFosse <peter@vector35.com>2018-03-18 14:47:17 -0400
committerPeter LaFosse <peter@vector35.com>2018-03-18 14:47:17 -0400
commit8f80afaaffa53ab0a1b0a4abc1a4c27ac45cf7d0 (patch)
tree0fa995153d544fcdfc8d9e6f39db113e332da5d1 /binaryninjaapi.h
parent0700b6ba0b92ff99328f764a5e48192dc6f961c6 (diff)
Add api for getting total string output size of QualifiedName object
Diffstat (limited to 'binaryninjaapi.h')
-rw-r--r--binaryninjaapi.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/binaryninjaapi.h b/binaryninjaapi.h
index 2d7e2ccf..d0c19e7a 100644
--- a/binaryninjaapi.h
+++ b/binaryninjaapi.h
@@ -680,8 +680,10 @@ namespace BinaryNinja
void erase(std::vector<std::string>::iterator i);
void clear();
void push_back(const std::string& name);
+ // Returns count of names
size_t size() const;
-
+ // Returns size of output string
+ size_t StringSize() const;
std::string GetString() const;
BNQualifiedName GetAPIObject() const;