#include <Name_Space.h>
Collaboration diagram for ACE_Name_Binding:
Public Member Functions | |
ACE_Name_Binding (const ACE_NS_WString &n, const ACE_NS_WString &v, const char *t) | |
Main constructor that initializes all the fields. | |
ACE_Name_Binding (void) | |
Default constructor. | |
ACE_Name_Binding (const ACE_Name_Binding &) | |
Copy constructor. | |
void | operator= (const ACE_Name_Binding &) |
Assignment operator. | |
~ACE_Name_Binding (void) | |
Destructor. | |
bool | operator== (const ACE_Name_Binding &s) const |
Test for equality. | |
Public Attributes | |
ACE_NS_WString | name_ |
Name of the binding. | |
ACE_NS_WString | value_ |
Value of the binding. | |
char * | type_ |
Type of the binding. |
Definition at line 36 of file Name_Space.h.
|
Main constructor that initializes all the fields.
Definition at line 27 of file Name_Space.cpp. References ACE_TRACE.
|
|
Default constructor.
Definition at line 12 of file Name_Space.cpp. References ACE_TRACE.
|
|
Copy constructor.
Definition at line 37 of file Name_Space.cpp. References ACE_TRACE.
|
|
Destructor.
Definition at line 21 of file Name_Space.cpp. References ACE_TRACE, and ACE_OS::free().
00022 { 00023 ACE_TRACE ("ACE_Name_Binding::~ACE_Name_Binding"); 00024 ACE_OS::free ((void *) this->type_); 00025 } |
|
Assignment operator.
Definition at line 46 of file Name_Space.cpp. References ACE_TRACE, ACE_OS::free(), name_, ACE_OS::strdup(), type_, and value_.
00047 { 00048 ACE_TRACE ("ACE_Name_Binding::operator ="); 00049 00050 if (this != &s) 00051 { 00052 ACE_OS::free ((void *) this->type_); 00053 this->name_ = s.name_; 00054 this->value_ = s.value_; 00055 this->type_ = ACE_OS::strdup (s.type_); 00056 } 00057 } |
|
Test for equality.
Definition at line 60 of file Name_Space.cpp. References ACE_TRACE, name_, ACE_OS::strcmp(), type_, and value_.
|
|
Name of the binding.
Definition at line 61 of file Name_Space.h. Referenced by ACE_Registry_Name_Space::list_names(), operator=(), and operator==(). |
|
Type of the binding.
Definition at line 67 of file Name_Space.h. Referenced by operator=(), and operator==(). |
|
Value of the binding.
Definition at line 64 of file Name_Space.h. Referenced by ACE_Registry_Name_Space::list_values(), operator=(), and operator==(). |