aboutsummaryrefslogtreecommitdiff
path: root/FileReader.cpp
blob: b76de506c654a6c0deacf5189ca3adf40f04ceb6 (plain)
1
2
3
4
5
6
7
8
9
#include <string>

#include "FileReader.h"
#include "FileReaderFactory.h"

FileReader::FileReader(const std::string protocol) {
	FileReaderFactory::register_strategy(protocol, this);
}