aboutsummaryrefslogtreecommitdiff
path: root/TXTParser.cpp
blob: 5aea0924c4829119a2b3defa6e557fe3bf1cd4be (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#include "TXTParser.h"
#include "Parser.h"

TXTParser TXTParser::instance {};
TXTParser::TXTParser() {
	Parser::register_strategy(this);
}

unsigned int TXTParser::heuristic(FileStrategy & f) {
	return 0;
}

void TXTParser::parse(FileStrategy & f, Deserializer & d) {
	printf("%s\n", __PRETTY_FUNCTION__);
}