#include <Registry.h>
Collaboration diagram for ACE_Registry::Binding:

Public Methods | |
| Binding (void) | |
| Empty (default) constructor. More... | |
| Binding (const Name &binding_name, Binding_Type binding_type) | |
| Constructor (Name version). More... | |
| Binding (const ACE_TString &binding_name, Binding_Type binding_type) | |
| Constructor (String version). More... | |
| int | operator== (const Binding &rhs) const |
| int | operator!= (const Binding &rhs) const |
| void | name (Name &name) |
| Name accessor (Name version). More... | |
| void | name (ACE_TString &name) |
| Set Name (String version). More... | |
| ACE_TString | name (void) |
| Get Name (String version). More... | |
| Binding_Type | type (void) |
| Type accessor. More... | |
Private Attributes | |
| ACE_TString | name_ |
| A binding has a name. More... | |
| Binding_Type | type_ |
| .... and a type. More... | |
|
|
Empty (default) constructor.
Definition at line 43 of file Registry.cpp. References ACE_Registry::INVALID.
|
|
||||||||||||
|
Constructor (Name version).
Definition at line 52 of file Registry.cpp. References ACE_Registry::Binding_Type, and ACE_Registry::make_string.
00054 : name_ (ACE_Registry::make_string (name)), 00055 type_ (type) 00056 { 00057 } |
|
||||||||||||
|
Constructor (String version).
Definition at line 62 of file Registry.cpp. References ACE_Registry::Binding_Type.
|
|
|
Get Name (String version).
Definition at line 105 of file Registry.cpp. References name_.
00106 {
00107 return this->name_;
00108 }
|
|
|
Set Name (String version).
Definition at line 96 of file Registry.cpp. References name_.
00097 {
00098 name = this->name_;
00099 }
|
|
|
Name accessor (Name version).
Definition at line 87 of file Registry.cpp. References ACE_Registry::make_name. Referenced by ACE_Registry_Name_Space::list_name_entries.
00088 {
00089 name = ACE_Registry::make_name (this->name_);
00090 }
|
|
|
Definition at line 79 of file Registry.cpp. References operator==.
00080 {
00081 return !this->operator== (rhs);
00082 }
|
|
|
Definition at line 71 of file Registry.cpp. Referenced by operator!=.
|
|
|
Type accessor.
Definition at line 113 of file Registry.cpp. References type_. Referenced by ACE_Registry_Name_Space::list_name_entries.
00114 {
00115 return this->type_;
00116 }
|
|
|
A binding has a name.
Definition at line 108 of file Registry.h. Referenced by name, and operator==. |
|
|
.... and a type.
Definition at line 111 of file Registry.h. Referenced by operator==, and type. |
1.2.14 written by Dimitri van Heesch,
© 1997-2002