Move menu parsing classes to menu namespace

This commit is contained in:
Jan
2021-11-01 09:43:07 +01:00
parent 38d60983e8
commit ff823b4722
26 changed files with 197 additions and 132 deletions

View File

@ -2,8 +2,11 @@
#include <string>
class CommonFunctionDef
namespace menu
{
public:
std::string m_name;
};
class CommonFunctionDef
{
public:
std::string m_name;
};
}