diff options
| author | Peter LaFosse <peter@vector35.com> | 2025-10-15 13:07:19 -0400 |
|---|---|---|
| committer | Peter LaFosse <peter@vector35.com> | 2025-10-16 13:37:08 -0400 |
| commit | cd9eea2fdbd51c25a9f17435c561b6fe9377960f (patch) | |
| tree | 98bb9755c8ce1d74f8d3c6934d0735a61377e7ae /typecontainer.cpp | |
| parent | 4780a8414c41099f49c5cb9a780bfffd084bdd47 (diff) | |
Add GetTypeCount API
Add note about type_names not being sorted anymore
Diffstat (limited to 'typecontainer.cpp')
| -rw-r--r-- | typecontainer.cpp | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/typecontainer.cpp b/typecontainer.cpp index 244c7a27..d6283cf0 100644 --- a/typecontainer.cpp +++ b/typecontainer.cpp @@ -336,6 +336,12 @@ std::optional<std::unordered_map<std::string, QualifiedName>> TypeContainer::Get } +size_t TypeContainer::GetTypeCount() const +{ + return BNTypeContainerGetTypeCount(m_object); +} + + bool TypeContainer::ParseTypeString( const std::string& source, bool importDependencies, |
