|
| config_int_limit (config_obj &owner, int def_val, int minv=INT_MIN, int maxv=INT_MAX, const char *name=NULL, const char *desc=NULL) |
| Object constructor with the parent/owner leaf parameter and limits.
|
|
| config_int_limit (int def_val, int minv=INT_MIN, int maxv=INT_MAX, const char *name=NULL, const char *desc=NULL) |
| Object constructor with limits.
|
|
config_int_limit & | operator= (const config_int &ci) |
| Copy a config_int object into the config_int_limit.
|
|
config_int_limit & | operator= (const config_int_limit &cil) |
| Copy one config_int_limit object to another.
|
|
virtual void | GetTextValue (NBString &s) override |
| Copy the object value to the specified NBString object.
|
|
| config_int (config_obj &owner, int def_val, const char *name, const char *desc=NULL) |
| Object constructor with the parent/owner leaf parameter.
|
|
| config_int (int def_val, const char *name, const char *desc=NULL) |
| Object constructor.
|
|
| operator int () const |
| Return the object value as an int.
|
|
config_int & | operator= (const int i) |
| Assign the config_int object value to the specified int value.
|
|
config_int & | operator= (const config_int &ci) |
| Copy one config_int object to another.
|
|
virtual void | GetTypeValue (NBString &s) override |
| Copy the object type value in the specified NBString object.
|
|
A config_int with minimum and/or maximum values Attempting to set a value lower than the minimum or greater than the maximum will fail with an error both programmatically and in the Config Web UI.