Class to store data shared among several spaces. More...
#include <shared-space-data.hpp>
Classes | |
class | Data |
The shared data. More... | |
Public Member Functions | |
SharedSpaceData (void) | |
Initialize. More... | |
SharedSpaceData (const SharedSpaceData &ssd) | |
Initialize from ssd. More... | |
SharedSpaceData & | operator= (const SharedSpaceData &r) |
Assignment operator. More... | |
~SharedSpaceData (void) | |
Delete. More... | |
Data & | data (void) const |
Provide access. More... | |
![]() | |
SharedHandle (void) | |
Create shared handle with no object pointing to. More... | |
SharedHandle (SharedHandle::Object *so) | |
Create shared handle that points to shared object so. More... | |
SharedHandle (const SharedHandle &sh) | |
Copy constructor maintaining reference count. More... | |
SharedHandle & | operator= (const SharedHandle &sh) |
Assignment operator maintaining reference count. More... | |
~SharedHandle (void) | |
Destructor that maintains reference count. More... | |
operator bool (void) const | |
Whether handle points to an object. More... | |
Additional Inherited Members | |
![]() | |
SharedHandle::Object * | object (void) const |
Access to the shared object. More... | |
void | object (SharedHandle::Object *n) |
Modify shared object. More... | |
Class to store data shared among several spaces.
Definition at line 41 of file shared-space-data.hpp.
|
inline |
Initialize.
Definition at line 78 of file shared-space-data.hpp.
|
inline |
Initialize from ssd.
Definition at line 82 of file shared-space-data.hpp.
|
inline |
Delete.
Definition at line 92 of file shared-space-data.hpp.
|
inline |
Assignment operator.
Definition at line 86 of file shared-space-data.hpp.
|
inline |
Provide access.
Definition at line 95 of file shared-space-data.hpp.