CommandLine parser initial

This commit is contained in:
IlushaShurupov 2023-07-15 13:12:51 +03:00
parent 6bca7431b7
commit 90998e2279
11 changed files with 592 additions and 22 deletions

View file

@ -9,6 +9,8 @@
namespace tp {
extern ModuleManifest gModuleTokenizer;
template <typename tAlphabetType, typename tStateType, tStateType tNoStateVal, tStateType tFailedStateVal>
class TransitionMatrix;

View file

@ -3,6 +3,10 @@
#include "AutomataGraph.h"
namespace tp {
extern ModuleManifest gModuleTokenizer;
}
namespace tp::RegEx {
struct AstNode {