Newer
Older
Franck Dary
committed
#ifndef READING_MACHINE__H
#define READING_MACHINE__H
#include <memory>
#include "Classifier.hpp"
class ReadingMachine
{
private :
std::string name;
std::function<std::pair<std::string, int>(const Config & config)> strategy;
Franck Dary
committed
std::unique_ptr<Classifier> classifier;
public :
ReadingMachine(const std::string & filename);
};
#endif