summaryrefslogtreecommitdiff
path: root/src/main/Parser.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/main/Parser.h')
-rw-r--r--src/main/Parser.h20
1 files changed, 20 insertions, 0 deletions
diff --git a/src/main/Parser.h b/src/main/Parser.h
new file mode 100644
index 0000000..311ddd1
--- /dev/null
+++ b/src/main/Parser.h
@@ -0,0 +1,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_ */