summaryrefslogtreecommitdiff
path: root/ace/Singleton.h
diff options
context:
space:
mode:
Diffstat (limited to 'ace/Singleton.h')
-rw-r--r--ace/Singleton.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/ace/Singleton.h b/ace/Singleton.h
index 0c4a322735d..5c4510d2922 100644
--- a/ace/Singleton.h
+++ b/ace/Singleton.h
@@ -37,6 +37,9 @@ public:
static TYPE *instance (TYPE*);
// Set the Singleton instance.
+ static void cleanup (void *object, void *);
+ // Cleanup method, used by ACE_Object_Manager to destroy the singleton.
+
static void dump (void);
// Dump the state of the object.
@@ -69,6 +72,9 @@ public:
static TYPE *instance (void);
// Global access point to the Singleton.
+ static void cleanup (void *object, void *);
+ // Cleanup method, used by ACE_Object_Manager to destroy the singleton.
+
static void dump (void);
// Dump the state of the object.