create enum definitions from headers

This commit is contained in:
Jan
2021-02-18 17:15:46 +01:00
parent 3c1599c1a0
commit 5d5fc86923
34 changed files with 350 additions and 163 deletions

View File

@ -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;