|
| EditableParameter (const string &name, const string &description, double value, double defaultValue, double min, double max, double increment, int type, int key) |
|
| EditableParameter (const string &name, const string &description, bool *value, bool defaultValue, int key) |
|
| EditableParameter (const string &name, const string &description, int *value, int defaultValue, int min, int max, int increment, int key) |
|
| EditableParameter (const string &name, const string &description, float *value, float defaultValue, float min, float max, float increment, int key) |
|
| EditableParameter (const string &name, const string &description, double *value, double defaultValue, double min, double max, double increment, int key) |
|
| EditableParameter (const EditableParameter ¶meter) |
|
const EditableParameter & | operator= (const EditableParameter ¶meter) |
|
double | getIncrement () const |
|
void | setIncrement (double increment) |
|
EditableParameter * | set (const string &name, const string &description, double value, double defaultValue, double min, double max, double increment, int type, int key) |
|
EditableParameter * | set (const string &name, const string &description, bool *value, bool defaultValue, int key=0) |
|
EditableParameter * | set (const string &name, const string &description, int *value, int defaultValue, int min, int max, int increment, int key=0) |
|
EditableParameter * | set (const string &name, const string &description, float *value, float defaultValue, float min, float max, float increment, int key=0) |
|
EditableParameter * | set (const string &name, const string &description, double *value, double defaultValue, double min, double max, double increment, int key=0) |
|
void | reset () |
|
void | unset () |
|
| ConstrainedParameter (const string &name, const string &description, double value, double defaultValue, double min, double max, int type=Double, int key=0) |
|
| ConstrainedParameter (const string &name, const string &description, bool *value, bool defaultValue, int key=0) |
|
| ConstrainedParameter (const string &name, const string &description, int *value, int defaultValue, int min, int max, int key=0) |
|
| ConstrainedParameter (const string &name, const string &description, float *value, float defaultValue, float min, float max, int key=0) |
|
| ConstrainedParameter (const string &name, const string &description, double *value, double defaultValue, double min, double max, int key=0) |
|
| ConstrainedParameter (const ConstrainedParameter ¶meter) |
|
const ConstrainedParameter & | operator= (const ConstrainedParameter ¶meter) |
|
double | getMinimum () const |
|
double | getMaximum () const |
|
double | getDefault () const |
|
void | setMinimum (double min) |
|
void | setMaximum (double max) |
|
void | setDefault (double value) |
|
void | setValue (double value) |
|
void | set (const string &name, const string &description, double value, double defaultValue, double min, double max, int type=Double, int key=0) |
|
void | set (const string &name, const string &description, bool *value, bool defaultValue, int key=0) |
|
void | set (const string &name, const string &description, int *value, int defaultValue, int min, int max, int key=0) |
|
void | set (const string &name, const string &description, float *value, float defaultValue, float min, float max, int key=0) |
|
void | set (const string &name, const string &description, double *value, double defaultValue, double min, double max, int key=0) |
|
void | reset () |
|
| Parameter (const string &name, const string &description, double value, int type, int key) |
|
| Parameter (const string &name, const string &description, bool *value, int key) |
|
| Parameter (const string &name, const string &description, int *value, int key) |
|
| Parameter (const string &name, const string &description, float *value, int key) |
|
| Parameter (const string &name, const string &description, double *value, int key) |
|
| Parameter (const Parameter ¶meter) |
|
const Parameter & | operator= (const Parameter ¶meter) |
|
int | getKey () const |
|
int | getType () const |
|
bool | getBoolValue () const |
|
int | getIntValue () const |
|
float | getFloatValue () const |
|
double | getDoubleValue () const |
|
void | setKey (int key) |
|
void | setValue (bool value) |
|
void | setValue (int value) |
|
void | setValue (float value) |
|
void | setValue (double value) |
|
void | set (const string &name, const string &description, double value, int type=Double, int key=0) |
|
void | set (const string &name, const string &description, bool *value, int key=0) |
|
void | set (const string &name, const string &description, int *value, int key=0) |
|
void | set (const string &name, const string &description, float *value, int key=0) |
|
void | set (const string &name, const string &description, double *value, int key=0) |
|
void | setName (const string &newName) |
| Set the name of the object.
|
|
const string & | getName () const |
| Get the name of the object.
|
|
bool | isName (const string &aName) const |
| Determine whether name equals given name.
|
|
void | setDescription (const string &description) |
| Set the Describe of the object.
|
|
const string | getDescription () const |
| Get the Describe of the object.
|
|
bool | isDescribed () const |
| Determine whether Describe is set, i.e object has a Describe.
|
|
bool | isDescription (const string &description) const |
| Determine whether Describe equals given Describe.
|
|
bool | sameDescriptionAs (const Described &described) const |
| Determine whether Describe equals that of given object.
|
|