1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
| #ifndef PARSERS_H
| #define PARSERS_H
| #include "ast.h"
| #include <string>
|
| class parser
| {
| public:
| virtual ~parser() = default;
| virtual void set_file(std::string file_name) = 0;
| virtual Document *parse() = 0;
| };
|
| #include "parsers/tester.h"
| #endif
|
|