00001 #ifndef LearningFactory_H 00002 #define LearningFactory_H 00003 00004 #include "Factory.h" 00005 #include "LearningAlgorithm.h" 00006 #include "TopolParams.h" 00007 00008 00009 #include <string> 00010 00011 using std::string; 00012 00013 class LearningFactory : public Factory<LearningAlgorithm,TopolParams> { 00014 00015 public: 00016 LearningFactory(const string& name): Factory<LearningAlgorithm,TopolParams>(name) {}; 00017 00018 }; 00019 00020 #endif