aboutsummaryrefslogtreecommitdiff
path: root/TXTParser.h
diff options
context:
space:
mode:
Diffstat (limited to 'TXTParser.h')
-rw-r--r--TXTParser.h12
1 files changed, 12 insertions, 0 deletions
diff --git a/TXTParser.h b/TXTParser.h
index 3f59c93..1db9e9d 100644
--- a/TXTParser.h
+++ b/TXTParser.h
@@ -1,2 +1,14 @@
#pragma once
+#include "ParserStrategy.h"
+
+class TXTParser : public ParserStrategy {
+public:
+ virtual void parse(File & f, Deserializer & d);
+ virtual unsigned int heuristic(File & f);
+
+private:
+ static TXTParser instance;
+ TXTParser();
+};
+