diff options
author | Loek Le Blansch <loek@pipeframe.xyz> | 2024-10-18 15:43:25 +0200 |
---|---|---|
committer | Loek Le Blansch <loek@pipeframe.xyz> | 2024-10-18 15:43:25 +0200 |
commit | 76e61d68bbf568ec0d7fc4632e52d4de5496b003 (patch) | |
tree | 92a2dc9b12a542456bdc154f44deb34925883210 /CSVParser.h | |
parent | 3f63576819151ff15237a9b4f0651c538cfef067 (diff) |
(1/2) rename
Diffstat (limited to 'CSVParser.h')
-rw-r--r-- | CSVParser.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/CSVParser.h b/CSVParser.h index 6698645..660cc18 100644 --- a/CSVParser.h +++ b/CSVParser.h @@ -1,11 +1,11 @@ #pragma once -#include "ParserStrategy.h" +#include "Parser.h" -class CSVParser : public ParserStrategy { +class CSVParser : public Parser { public: - virtual void parse(FileStrategy & f, Deserializer & d); - virtual unsigned int heuristic(FileStrategy & f); + virtual void parse(FileReader & f, MuseumDeserializer & d); + virtual unsigned int heuristic(FileReader & f); private: static CSVParser instance; |