|
#pragma once
|
|
#ifndef PARSODUS_CONFIG_H
|
|
#define PARSODUS_CONFIG_H
|
|
|
|
#include "Parsodus/grammar.h"
|
|
#include "Parsodus/util/parserType.h"
|
|
|
|
namespace pds {
|
|
|
|
struct Config {
|
|
std::string parserType;
|
|
std::string lexesisFile;
|
|
Grammar grammar;
|
|
};
|
|
|
|
}
|
|
|
|
#endif //PARSODUS_CONFIG_H
|