mirror of
https://github.com/Laupetin/OpenAssetTools.git
synced 2025-06-15 01:07:58 -05:00
create enum definitions from headers
This commit is contained in:
@ -4,6 +4,9 @@
|
||||
|
||||
std::string NamespaceBuilder::Combine(const std::string& _namespace, const std::string& name)
|
||||
{
|
||||
if (_namespace.empty())
|
||||
return name;
|
||||
|
||||
std::ostringstream str;
|
||||
str << _namespace << "::" << name;
|
||||
|
||||
|
Reference in New Issue
Block a user