diff options
author | Roland Reichwein <mail@reichwein.it> | 2020-01-22 20:59:15 +0100 |
---|---|---|
committer | Roland Reichwein <mail@reichwein.it> | 2020-01-22 20:59:15 +0100 |
commit | f7cdbb6635d62a0347be579cb8dd6badec22956d (patch) | |
tree | 51e779573e62a2d29234ae35ff802de3e4f6b5e8 /grammer.h | |
parent | 3eff766ce1cbed5d3a3c3158614e6741cc1b7f2a (diff) |
Namespace Gram
Diffstat (limited to 'grammer.h')
-rw-r--r-- | grammer.h | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -3,6 +3,8 @@ #include "bnf.h" #include "minicc.h" +namespace Gram { + class Compiler { @@ -17,3 +19,4 @@ public: ProgramNode compile(std::vector<Token> Tokens); }; +} // namespace Gram |