Newer
Older
Franck Dary
committed
#ifndef READING_MACHINE__H
#define READING_MACHINE__H
#include <memory>
#include "Classifier.hpp"
Franck Dary
committed
class ReadingMachine
{
private :
std::string name;
std::unique_ptr<Classifier> classifier;
Franck Dary
committed
public :
ReadingMachine(const std::string & filename);
TransitionSet & getTransitionSet();
Strategy & getStrategy();