dashboard
repositories
filestore
activity
search
login
main
/
DocComp
summary
reflog
commits
tree
docs
forks
compare
blame
|
history
|
raw
Fixed table memory leak
Joel Grunbaum
2021-07-20
081654efe3e47e9ed85b6efccb9438ee19ddb164
[DocComp.git]
/
parsers
/
tester.h
1
2
3
4
5
6
7
8
9
10
11
#ifndef TESTER_H
#define TESTER_H
#include "../parsers.h"
#include "../ast.h"
class tester: public parser {
public:
void set_file(std::string file_name);
Document* parse();
};
#endif