Skip to content
Snippets Groups Projects
ReadingMachine.hpp 348 B
Newer Older
#ifndef READING_MACHINE__H
#define READING_MACHINE__H

#include <memory>
#include "Classifier.hpp"

class ReadingMachine
{
  private :

  std::string name;
Franck Dary's avatar
Franck Dary committed
  std::function<std::pair<std::string, int>(const Config & config)> strategy;
  std::unique_ptr<Classifier> classifier;

  public :

  ReadingMachine(const std::string & filename);
};

#endif