#include <CStringConfigParam.h>
Inheritance diagram for CStringConfigParam:
Public Member Functions | |
CStringConfigParam (const string &keyword) | |
virtual | ~CStringConfigParam () |
CStringConfigParam (const CStringConfigParam &aCStringConfigParam) | |
CStringConfigParam & | operator= (const CStringConfigParam &rhs) |
int | operator== (const CStringConfigParam &rhs) const |
int | operator!= (const CStringConfigParam &rhs) const |
string | getOptionValue () |
virtual int | SetValue (CTCLInterpreter &rInterp, CTCLResult &rResult, const char *value) |
virtual string | GetParameterFormat () |
CStringConfigParam (const string &keyword) | |
virtual | ~CStringConfigParam () |
CStringConfigParam (const CStringConfigParam &aCStringConfigParam) | |
CStringConfigParam & | operator= (const CStringConfigParam &rhs) |
int | operator== (const CStringConfigParam &rhs) const |
int | operator!= (const CStringConfigParam &rhs) const |
string | getOptionValue () |
virtual int | SetValue (CTCLInterpreter &rInterp, CTCLResult &rResult, const char *value) |
virtual string | GetParameterFormat () |
Definition at line 40 of file CStringConfigParam.h.
|
Construct a string valued configuration parameter.
Definition at line 12 of file CStringConfigParam.cpp. |
|
Destructor: In this case it's a no-op. Definition at line 20 of file CStringConfigParam.cpp. |
|
Copy constructor. All we need to do is invoke the base class copy constructor. Definition at line 26 of file CStringConfigParam.cpp. |
|
|
|
|
|
|
|
|
|
Returns the current value of the string. For a string valued parameter, we just get the value stored by the base class. Definition at line 61 of file CStringConfigParam.cpp. References CConfigurationParameter::getValue(). |
|
Implements CConfigurationParameter. |
|
Returns the format of the configuration parameter. In this case it's the text "string" Implements CConfigurationParameter. Definition at line 85 of file CStringConfigParam.cpp. |
|
Definition at line 52 of file include/CStringConfigParam.h. References operator==(). |
|
Definition at line 52 of file CStringConfigParam.h. References operator==(). |
|
|
|
Assignment. The base class assignment operator does all the work. Definition at line 34 of file CStringConfigParam.cpp. References CConfigurationParameter::operator=(). |
|
|
|
Equality comparison. Base class does all the work. Definition at line 46 of file CStringConfigParam.cpp. References CConfigurationParameter::operator==(). Referenced by operator!=(). |
|
Implements CConfigurationParameter. |
|
Sets the value of the actual parameter from the stringified param (no-op here since we use the base class's string value. Implements CConfigurationParameter. Definition at line 74 of file CStringConfigParam.cpp. |