summaryrefslogtreecommitdiff
path: root/src/main/Parser.h
blob: 311ddd1f803b9820967fe58bbb8b62ae0fa97631 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
/*
 * Parser.h
 *
 *  Created on: 11 mai 2011
 *      Author: christian
 */

#include <string>

#ifndef PARSER_H_
#define PARSER_H_

class Parser {
public:
	Parser(string file);
	virtual ~Parser();
	void extract(string file);
};

#endif /* PARSER_H_ */