PorygonLang/src/Script.hpp

25 lines
345 B
C++
Raw Normal View History

2019-05-21 10:59:15 +00:00
#include <utility>
#ifndef PORYGONLANG_SCRIPT_HPP
#define PORYGONLANG_SCRIPT_HPP
#include <string>
#include "Parser/Lexer.hpp"
#include "Parser/Parser.hpp"
using namespace std;
class Script {
explicit Script(){
}
void Parse(string script);
public:
static Script Create(string script);
};
#endif //PORYGONLANG_SCRIPT_HPP