diff --git a/include/Parsodus/config.h b/include/Parsodus/config.h index 927219f..976c314 100644 --- a/include/Parsodus/config.h +++ b/include/Parsodus/config.h @@ -3,13 +3,12 @@ #define PARSODUS_CONFIG_H #include "Parsodus/grammar.h" +#include "Parsodus/util/parserType.h" namespace pds { struct Config { - enum class ParserType {LALR_1}; - - ParserType parserType; + util::ParserType parserType; std::string lexesisFile; Grammar grammar; }; diff --git a/include/Parsodus/util/parserType.h b/include/Parsodus/util/parserType.h new file mode 100644 index 0000000..287d4fc --- /dev/null +++ b/include/Parsodus/util/parserType.h @@ -0,0 +1,13 @@ +#pragma once +#ifndef PARSODUS_UTIL_PARSER_TYPE +#define PARSODUS_UTIL_PARSER_TYPE + +namespace pds { +namespace util { + + enum class ParserType {LR_0, SLR_1, LALR_1}; + +} +} + +#endif //PARSODUS_UTIL_PARSER_TYPE