parsers.h | ●●●●● patch | view | raw | blame | history | |
parsers/tester.h | ●●●●● patch | view | raw | blame | history |
parsers.h
@@ -1,9 +1,10 @@ #ifndef PARSERS_H #define PARSERS_H #include <string> #include "ast.h" #include <string> class parser { class parser { public: virtual ~parser()=default; virtual void set_file(std::string file_name)=0; parsers/tester.h
@@ -1,9 +1,10 @@ #ifndef TESTER_H #define TESTER_H #include "../parsers.h" #include "../ast.h" #include "../parsers.h" class tester: public parser { class tester : public parser { public: void set_file(std::string file_name); Document* parse();