Creates base of script class
This commit is contained in:
24
src/Script.hpp
Normal file
24
src/Script.hpp
Normal file
@@ -0,0 +1,24 @@
|
||||
#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
|
||||
Reference in New Issue
Block a user