aboutsummaryrefslogtreecommitdiff
path: root/TXTParser.h
diff options
context:
space:
mode:
authorLoek Le Blansch <loek@pipeframe.xyz>2024-10-22 14:44:47 +0200
committerLoek Le Blansch <loek@pipeframe.xyz>2024-10-22 14:44:47 +0200
commit8c0562c8ef37cd5e80c58609f7bc7ae352365f65 (patch)
tree42e9906c5ddf1b0e719ee3eb7b965a444be64c38 /TXTParser.h
parentbc02054d56118110a36aea72d21f9d5e73d07d1f (diff)
refactor parser factory
Diffstat (limited to 'TXTParser.h')
-rw-r--r--TXTParser.h10
1 files changed, 4 insertions, 6 deletions
diff --git a/TXTParser.h b/TXTParser.h
index 064a0cf..cfb485a 100644
--- a/TXTParser.h
+++ b/TXTParser.h
@@ -3,12 +3,10 @@
#include "Parser.h"
class TXTParser : public Parser {
-public:
- virtual void parse(FileReader & f, MuseumDeserializer & d);
- virtual unsigned int heuristic(FileReader & f);
+ friend class ParserFactory;
-private:
- static TXTParser instance;
- TXTParser();
+public:
+ virtual void parse(MuseumDeserializer & d);
+ virtual unsigned int heuristic();
};