Skip to content
Snippets Groups Projects
Classifier.hpp 315 B
Newer Older
  • Learn to ignore specific revisions
  • #ifndef CLASSIFIER__H
    #define CLASSIFIER__H
    
    #include <string>
    #include "TransitionSet.hpp"
    
    class Classifier
    {
      private :
    
      std::string name;
      std::unique_ptr<TransitionSet> transitionSet;
    
      public :
    
      Classifier(const std::string & name, const std::string & topology, const std::string & tsFile);
    };
    
    #endif