Moved enum parserType to separate file

This commit is contained in:
Thomas Avé 2016-12-30 17:37:08 +01:00
parent a9067c019e
commit e62eae124e
2 changed files with 15 additions and 3 deletions

View File

@ -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;
};

View File

@ -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