|
NetBurner 3.5.8
PDF Version |
Unsigned 32-bit Integer Configuration Variable. More...
#include <config_obj.h>
Inherits config_value.
Inherited by .
Public Member Functions | |
| virtual void | GetTextValue (NBString &s) override |
| Copy the object value to the specified NBString object. | |
| config_uint (config_obj &owner, uint32_t def_val, const char *name, const char *desc=NULL) | |
| Object constructor with the parent/owner leaf parameter. | |
| config_uint (uint32_t def_val, const char *name, const char *desc=NULL) | |
| Object constructor. | |
| operator uint32_t () const | |
| Return the object value. | |
| config_uint & | operator= (const uint32_t i) |
| Assign the config_uint object value from a uint32_t value. | |
| config_uint & | operator= (const config_uint &ci) |
| Copy one config_uint object to another. | |
| virtual void | GetTypeValue (NBString &s) override |
| Copy the object type value to the specified NBString object. | |
Additional Inherited Members | |
| Protected Member Functions inherited from config_value | |
| config_value (config_obj &owner, const char *name, const char *desc) | |
| Object constructor with the parent/owner leaf parameter. | |
| config_value (const char *name, const char *desc) | |
| Object constructor. | |
Unsigned 32-bit Integer Configuration Variable.
|
inline |
Object constructor with the parent/owner leaf parameter.
| owner | Reference to owner/parent leaf |
| def_val | Default value |
| name | Field name assigned to the value |
| desc | Description used for info/tool tip |
|
inline |
Object constructor.
| def_val | Default value |
| name | Field name assigned to the value |
| desc | Description used for info/tool tip |
|
inlineoverridevirtual |
Copy the object value to the specified NBString object.
This is a virtual function that can be overridden in any derived class.
| s | Reference to a NBString object to store the result |
Implements config_value.
|
inlineoverridevirtual |
|
inline |
Return the object value.
Example: for a variable named configuInt of type config_uint:
|
inline |
Copy one config_uint object to another.
| ci | Reference to a config_uint object |
|
inline |
Assign the config_uint object value from a uint32_t value.
| i | uint32_t value |