Move Menu Expression to Simple Namespace to have generic configurable expressions

This commit is contained in:
Jan
2021-11-24 17:44:14 +01:00
parent 4f2a8454a6
commit 38f3d7d10e
21 changed files with 619 additions and 407 deletions

View File

@ -1,6 +1,6 @@
#pragma once
#include <unordered_map>
#include <map>
#include <stack>
#include <sstream>
@ -44,7 +44,7 @@ public:
private:
IParserLineStream* const m_stream;
std::unordered_map<std::string, Define> m_defines;
std::map<std::string, Define> m_defines;
std::stack<bool> m_modes;
unsigned m_ignore_depth;