00001 #ifndef TMEGENERATOROPTIONS_H_ 00002 #define TMEGENERATOROPTIONS_H_ 00003 00004 #include "ModulesOptions.h" 00005 00009 class TMEGeneratorOptions:public modules::options{ 00010 public: 00011 TMEGeneratorOptions(const std::string& name): 00012 modules::options(name){}; 00013 ~TMEGeneratorOptions(){}; 00014 00015 TMEGeneratorOptions(const std::string& name,const modules::options* opts): 00016 modules::options(name){ 00017 modules::options::operator=(*opts); 00018 } 00019 00020 TMEGeneratorOptions& operator=(const modules::options& rhs){ 00021 modules::options::operator=(rhs); 00022 return *this; 00023 } 00024 }; 00025 00026 #endif // TMEGENERATOROPTIONS_H_