ROSE 0.11.145.147
optionDeclaration.h
1#ifndef _OPTION_DECLARATION_H
2#define _OPTION_DECLARATION_H
3
17class ROSE_DLL_API OptionDeclaration
18 {
19
20 public:
21
23 std::string optionName;
24
29 int valueInteger;
30 bool valueBool;
31 double valuedouble;
32 std::string valueString;
43 OptionDeclaration( std::string s, int value );
44 OptionDeclaration( std::string s, double value );
45 OptionDeclaration( std::string s, std::string value );
49 std::string getValue();
50 };
51
52// endif for _OPTION_DECLARATION_H
53#endif
std::string getValue()
get the input value.
std::string optionName
This is the name of the option which is used at compile-time to associate the value with the option.