#include <Configuration.h>
Public Methods | |
ACE_Configuration_Value_IntId (void) | |
Default constructor. | |
ACE_EXPLICIT | ACE_Configuration_Value_IntId (ACE_TCHAR *string) |
String constructor, takes ownership of string. | |
ACE_EXPLICIT | ACE_Configuration_Value_IntId (u_int integer) |
Integer constructor. | |
ACE_Configuration_Value_IntId (void *data, size_t length) | |
Binary constructor, takes ownership of data. | |
ACE_Configuration_Value_IntId (const ACE_Configuration_Value_IntId &rhs) | |
Copy ctor. | |
~ACE_Configuration_Value_IntId (void) | |
Destructor. | |
ACE_Configuration_Value_IntId & | operator= (const ACE_Configuration_Value_IntId &rhs) |
Assignment operator. | |
void | free (ACE_Allocator *alloc) |
Public Attributes | |
ACE_Configuration::VALUETYPE | type_ |
union { | |
void * ptr_ | |
u_int int_ | |
} | data_ |
size_t | length_ |
This class is present as the internal portion of a section's value hash table It may store string, integer or binary data.
|
Default constructor.
|
|
String constructor, takes ownership of string.
|
|
Integer constructor.
|
|
Binary constructor, takes ownership of data.
|
|
Copy ctor.
|
|
Destructor.
|
|
|
|
Assignment operator.
|
|
|
|
|
|
|
|
|
|
Points to the string value or binary data or IS the integer Length is only used when type_ == BINARY |