summaryrefslogtreecommitdiff
path: root/ACE/ace/Singleton.h
diff options
context:
space:
mode:
authorAdam Mitz <mitza@ociweb.com>2015-11-06 17:07:11 -0600
committerAdam Mitz <mitza@ociweb.com>2015-11-06 17:07:11 -0600
commitac5e1702c9f9bee9f1f7bfce8c1a6f3847ea6b4b (patch)
tree0e70d1f51c39e688a05a6cdc2af58408222e4a0d /ACE/ace/Singleton.h
parent5272b5b81f92c298cb998b5bb0b0dbca3e7f29fe (diff)
downloadATCD-ac5e1702c9f9bee9f1f7bfce8c1a6f3847ea6b4b.tar.gz
Merged branch ace-face-safety (FACE Safety Profile import from OCITAO).
Diffstat (limited to 'ACE/ace/Singleton.h')
-rw-r--r--ACE/ace/Singleton.h18
1 files changed, 18 insertions, 0 deletions
diff --git a/ACE/ace/Singleton.h b/ACE/ace/Singleton.h
index aac7f787e95..7fe561fbbb9 100644
--- a/ACE/ace/Singleton.h
+++ b/ACE/ace/Singleton.h
@@ -90,6 +90,9 @@ public:
/// Dump the state of the object.
static void dump (void);
+ /// Declare the dynamic allocation hooks.
+ ACE_ALLOC_HOOK_DECLARE;
+
protected:
/// Default constructor.
ACE_Singleton (void);
@@ -136,6 +139,9 @@ public:
/// Dump the state of the object.
static void dump (void);
+ /// Declare the dynamic allocation hooks.
+ ACE_ALLOC_HOOK_DECLARE;
+
protected:
/// Default constructor.
ACE_Unmanaged_Singleton (void);
@@ -181,6 +187,9 @@ public:
/// Dump the state of the object.
static void dump (void);
+ /// Declare the dynamic allocation hooks.
+ ACE_ALLOC_HOOK_DECLARE;
+
protected:
/// Default constructor.
ACE_TSS_Singleton (void);
@@ -226,6 +235,9 @@ public:
/// Dump the state of the object.
static void dump (void);
+ /// Declare the dynamic allocation hooks.
+ ACE_ALLOC_HOOK_DECLARE;
+
protected:
/// Default constructor.
ACE_Unmanaged_TSS_Singleton (void);
@@ -284,6 +296,9 @@ public:
const ACE_TCHAR *name (void);
+ /// Declare the dynamic allocation hooks.
+ ACE_ALLOC_HOOK_DECLARE;
+
protected:
/// Default constructor.
ACE_DLL_Singleton_T (void);
@@ -308,6 +323,9 @@ class ACE_DLL_Singleton_Adapter_T : public TYPE
{
public:
const ACE_TCHAR *dll_name (void);
+
+ /// Declare the dynamic allocation hooks.
+ ACE_ALLOC_HOOK_DECLARE;
};
ACE_END_VERSIONED_NAMESPACE_DECL