summaryrefslogtreecommitdiff
path: root/debuginfo.cpp
diff options
context:
space:
mode:
authorGlenn Smith <glenn@vector35.com>2023-02-20 21:58:55 -0500
committerGlenn Smith <glenn@vector35.com>2023-11-06 16:10:47 -0500
commit4108964609171327618627477163339656037111 (patch)
tree79f4c6da6394b973cee05cc42b6edd7e2e20909d /debuginfo.cpp
parentb270d7ebe1e2a406e1f7f14807987d24b0c4a846 (diff)
Type Containers
Diffstat (limited to 'debuginfo.cpp')
-rw-r--r--debuginfo.cpp6
1 files changed, 6 insertions, 0 deletions
diff --git a/debuginfo.cpp b/debuginfo.cpp
index 5f4e1af0..5fef18d2 100644
--- a/debuginfo.cpp
+++ b/debuginfo.cpp
@@ -54,6 +54,12 @@ vector<string> DebugInfo::GetParsers() const
}
+TypeContainer DebugInfo::GetTypeContainer(const std::string& parserName)
+{
+ return TypeContainer(BNGetDebugInfoTypeContainer(m_object, parserName.c_str()));
+}
+
+
vector<NameAndType> DebugInfo::GetTypes(const string& parserName) const
{
size_t count;