#include <Registry.h>
Public Methods | |
| Object (void *data=0, u_long size=0, u_long type=REG_NONE) | |
| Default constructor. More... | |
| void | data (void *data) |
| Set data. More... | |
| void * | data (void) const |
| Get data. More... | |
| void | size (u_long size) |
| Set size. More... | |
| u_long | size (void) const |
| Get size. More... | |
| void | type (u_long type) |
| Set type. More... | |
| u_long | type (void) const |
| Get type. More... | |
Private Attributes | |
| void * | data_ |
| Pointer to data. More... | |
| u_long | size_ |
| Size of the data. More... | |
| u_long | type_ |
| Type of data. More... | |
In CORBA, all objects inherit from (CORBA::Object). For the registry, this is used as a wrapper for an instance of a built-in data type. Think about an object as being similar to a file in a file system.
Definition at line 131 of file Registry.h.
|
||||||||||||||||
|
Default constructor.
Definition at line 120 of file Registry.cpp.
|
|
|
Get data.
Definition at line 138 of file Registry.cpp. References data_.
00139 {
00140 return this->data_;
00141 }
|
|
|
Set data.
Definition at line 131 of file Registry.cpp. Referenced by data.
|
|
|
Get size.
Definition at line 152 of file Registry.cpp. References size_.
00153 {
00154 return this->size_;
00155 }
|
|
|
Set size.
Definition at line 145 of file Registry.cpp. Referenced by ACE_Registry_Name_Space::resolve, and size.
|
|
|
Get type.
Definition at line 166 of file Registry.cpp. References type_.
00167 {
00168 return this->type_;
00169 }
|
|
|
Set type.
Definition at line 159 of file Registry.cpp. Referenced by type.
|
|
|
Pointer to data.
Definition at line 159 of file Registry.h. Referenced by data. |
|
|
Size of the data.
Definition at line 162 of file Registry.h. Referenced by size. |
|
|
Type of data.
Definition at line 165 of file Registry.h. Referenced by type. |
1.2.14 written by Dimitri van Heesch,
© 1997-2002