Moved enum parserType to separate file
This commit is contained in:
parent
a9067c019e
commit
e62eae124e
|
@ -3,13 +3,12 @@
|
||||||
#define PARSODUS_CONFIG_H
|
#define PARSODUS_CONFIG_H
|
||||||
|
|
||||||
#include "Parsodus/grammar.h"
|
#include "Parsodus/grammar.h"
|
||||||
|
#include "Parsodus/util/parserType.h"
|
||||||
|
|
||||||
namespace pds {
|
namespace pds {
|
||||||
|
|
||||||
struct Config {
|
struct Config {
|
||||||
enum class ParserType {LALR_1};
|
util::ParserType parserType;
|
||||||
|
|
||||||
ParserType parserType;
|
|
||||||
std::string lexesisFile;
|
std::string lexesisFile;
|
||||||
Grammar grammar;
|
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