#include <Registry.h>
Collaboration diagram for ACE_Registry::Binding:
Public Member Functions | |
Binding (void) | |
Empty (default) constructor. | |
Binding (const Name &binding_name, Binding_Type binding_type) | |
Binding (const ACE_TString &binding_name, Binding_Type binding_type) | |
bool | operator== (const Binding &rhs) const |
bool | operator!= (const Binding &rhs) const |
void | name (Name &name) |
void | name (ACE_TString &name) |
Set Name (String version). | |
ACE_TString | name (void) |
Get Name (String version). | |
Binding_Type | type (void) |
Type accessor. | |
Private Attributes | |
ACE_TString | name_ |
A binding has a name. | |
Binding_Type | type_ |
.... and a type |
|
Empty (default) constructor.
Definition at line 47 of file Registry.cpp.
|
|
Constructor (Name version) Definition at line 56 of file Registry.cpp. References ACE_Registry::make_string(), and ACE_Registry::Name.
|
|
Constructor (String version) Definition at line 66 of file Registry.cpp. References ACE_TString.
|
|
Get Name (String version).
Definition at line 109 of file Registry.cpp.
00110 { 00111 return this->name_; 00112 } |
|
Set Name (String version).
Definition at line 100 of file Registry.cpp. References ACE_TString.
00101 { 00102 name = this->name_; 00103 } |
|
Name accessor (Name version) Definition at line 91 of file Registry.cpp. References ACE_Registry::make_name(), and ACE_Registry::Name. Referenced by ACE_Registry_Name_Space::list_name_entries().
00092 { 00093 name = ACE_Registry::make_name (this->name_); 00094 } |
|
Definition at line 83 of file Registry.cpp. References operator==().
00084 { 00085 return !this->operator== (rhs); 00086 } |
|
Definition at line 75 of file Registry.cpp. Referenced by operator!=().
|
|
Type accessor.
Definition at line 117 of file Registry.cpp. Referenced by ACE_Registry_Name_Space::list_name_entries().
00118 { 00119 return this->type_; 00120 } |
|
A binding has a name.
Definition at line 110 of file Registry.h. Referenced by operator==(). |
|
.... and a type
Definition at line 113 of file Registry.h. Referenced by operator==(). |