Moved enum parserType to separate file
This commit is contained in:
parent
a9067c019e
commit
e62eae124e
|
@ -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;
|
||||
};
|
||||
|
|
|
@ -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
|
Loading…
Reference in New Issue