SpherePackingScenarioGenerator
|
00001 /* 00002 * Configuration.h 00003 * 00004 * Created on: May 9, 2011 00005 * Author: liebm 00006 */ 00007 00008 #ifndef CONFIGURATION_H_ 00009 #define CONFIGURATION_H_ 00010 00011 #include <vector> 00012 #include "configuration/attributes/DoubleAttribute.h" 00013 00014 namespace configuration 00015 { 00016 class Configuration 00017 { 00018 public: 00019 Configuration(); 00020 virtual 00021 ~Configuration(); 00022 00023 private: 00024 std::string _name; 00025 std::vector<Configuration> _configurations; 00026 std::vector<attributes::DoubleAttribute> _doubleAttributes; 00027 // std::vector<DoubleAttribute> _stringAttributes; 00028 // std::vector<DoubleAttribute> _doubleDVectorAttributes; 00029 }; 00030 00031 } 00032 00033 #endif /* CONFIGURATION_H_ */