00001 #ifndef _OPTION_DECLARATION_H 00002 #define _OPTION_DECLARATION_H 00003 00017 class OptionDeclaration 00018 { 00019 00020 public: 00021 00023 std::string optionName; 00024 00029 int valueInteger; 00030 bool valueBool; 00031 double valuedouble; 00032 std::string valueString; 00043 OptionDeclaration( std::string s, int value ); 00044 OptionDeclaration( std::string s, double value ); 00045 OptionDeclaration( std::string s, std::string value ); 00048 00049 std::string getValue(); 00050 }; 00051 00052 // endif for _OPTION_DECLARATION_H 00053 #endif
1.4.7