00001 #ifndef LearningFactory_H 00002 #define LearningFactory_H 00003 00004 #include "factory.h" 00005 #include "LearningAlgorithm.h" 00006 #include "TopolParams.h" 00007 00008 #include <string> 00009 00011 00019 using namespace std; 00020 00021 class LearningFactory : public Factory<LearningAlgorithm,TopolParams> 00022 { 00023 public: 00025 LearningFactory(const string& name): Factory<LearningAlgorithm,TopolParams>(name) {}; 00026 }; 00027 00028 00029 #endif