diff options
author | Roland Reichwein <mail@reichwein.it> | 2020-03-21 16:06:47 +0100 |
---|---|---|
committer | Roland Reichwein <mail@reichwein.it> | 2020-03-21 16:06:47 +0100 |
commit | cdf001920fde6652b344775589b0524ff6529809 (patch) | |
tree | 883ab6232a4c4ca4056b123bff7c7d1cd98c5cf4 /cppbnf.h | |
parent | 3cc139bce0283018473d4906ee2ea5f40f771255 (diff) |
Added Gram::Compiler to CPP (WIP)
Diffstat (limited to 'cppbnf.h')
-rw-r--r-- | cppbnf.h | 10 |
1 files changed, 8 insertions, 2 deletions
@@ -2,5 +2,11 @@ #include "bnf.h" -BNF GetCppBNFLex(); -BNF GetCppBNFGram(); +namespace CPPBNF { + + BNF GetCppBNFLex(); + BNF GetCppBNFGram(); + bool valid(const BNF& bnf); + bool validLex(const BNF& bnf); + +} |