ACE
6.3.3
|
Same as ACE_Singleton, except does not register with ACE_Object_Manager for destruction. More...
#include <Singleton.h>
Static Public Member Functions | |
static TYPE * | instance (void) |
Global access point to the Singleton. More... | |
static void | close (void) |
Explicitly delete the Singleton instance. More... | |
static void | dump (void) |
Dump the state of the object. More... | |
Static Public Member Functions inherited from ACE_Singleton< TYPE, ACE_LOCK > | |
static TYPE * | instance (void) |
Global access point to the Singleton. More... | |
static void | close (void) |
Explicitly delete the Singleton instance. More... | |
static void | dump (void) |
Dump the state of the object. More... | |
Protected Member Functions | |
ACE_Unmanaged_Singleton (void) | |
Default constructor. More... | |
Protected Member Functions inherited from ACE_Singleton< TYPE, ACE_LOCK > | |
ACE_Singleton (void) | |
Default constructor. More... | |
Static Protected Member Functions | |
static ACE_Unmanaged_Singleton< TYPE, ACE_LOCK > *& | instance_i (void) |
Get pointer to the Singleton instance. More... | |
Static Protected Member Functions inherited from ACE_Singleton< TYPE, ACE_LOCK > | |
static ACE_Singleton< TYPE, ACE_LOCK > *& | instance_i (void) |
Get pointer to the Singleton instance. More... | |
Static Protected Attributes | |
static ACE_Unmanaged_Singleton< TYPE, ACE_LOCK > * | singleton_ = 0 |
Pointer to the Singleton (ACE_Cleanup) instance. More... | |
Static Protected Attributes inherited from ACE_Singleton< TYPE, ACE_LOCK > | |
static ACE_Singleton< TYPE, ACE_LOCK > * | singleton_ = 0 |
Pointer to the Singleton (ACE_Cleanup) instance. More... | |
Additional Inherited Members | |
Public Member Functions inherited from ACE_Singleton< TYPE, ACE_LOCK > | |
virtual void | cleanup (void *param=0) |
Public Member Functions inherited from ACE_Cleanup | |
ACE_Cleanup (void) | |
No-op constructor. More... | |
virtual | ~ACE_Cleanup (void) |
Destructor. More... | |
Protected Attributes inherited from ACE_Singleton< TYPE, ACE_LOCK > | |
TYPE | instance_ |
Contained instance. More... | |
Same as ACE_Singleton, except does not register with ACE_Object_Manager for destruction.
This version of ACE_Singleton can be used if, for example, its DLL will be unloaded before the ACE_Object_Manager destroys the instance. Unlike with ACE_Singleton, the application is responsible for explicitly destroying the instance after it is no longer needed (if it wants to avoid memory leaks, at least). The close() static member function must be used to explicitly destroy the Singleton. Usage is the same as for ACE_Singleton, but note that if you you declare a friend, the friend class must still be an ACE_Singleton<T, [ACE_LOCK]>, not an ACE_Unmanaged_Singleton.
|
inlineprotected |
Default constructor.
|
static |
Explicitly delete the Singleton instance.
|
static |
Dump the state of the object.
|
static |
Global access point to the Singleton.
|
staticprotected |
Get pointer to the Singleton instance.
|
staticprotected |
Pointer to the Singleton (ACE_Cleanup) instance.