summaryrefslogtreecommitdiff
path: root/TAO/tao/TAO_Singleton_Manager.inl
diff options
context:
space:
mode:
authorOssama Othman <ossama-othman@users.noreply.github.com>2000-08-06 20:51:14 +0000
committerOssama Othman <ossama-othman@users.noreply.github.com>2000-08-06 20:51:14 +0000
commit9ef6e9f8bc57551d9ad1fe84da7cde9e4b27125f (patch)
tree217066bb25f7612f656d4c2fa87b97787945100c /TAO/tao/TAO_Singleton_Manager.inl
parent93f7df5a05a37270bf748c210e7b8c8a7d7c469e (diff)
downloadATCD-9ef6e9f8bc57551d9ad1fe84da7cde9e4b27125f.tar.gz
ChangeLogTag:Sun Aug 06 16:46:31 2000 Ossama Othman <ossama@uci.edu>
Diffstat (limited to 'TAO/tao/TAO_Singleton_Manager.inl')
-rw-r--r--TAO/tao/TAO_Singleton_Manager.inl26
1 files changed, 26 insertions, 0 deletions
diff --git a/TAO/tao/TAO_Singleton_Manager.inl b/TAO/tao/TAO_Singleton_Manager.inl
new file mode 100644
index 00000000000..f9f0dd141ce
--- /dev/null
+++ b/TAO/tao/TAO_Singleton_Manager.inl
@@ -0,0 +1,26 @@
+// -*- C++ -*-
+//
+// $Id$
+
+ACE_INLINE
+int
+TAO_Singleton_Manager::at_exit (ACE_Cleanup *object,
+ void *param)
+{
+ return TAO_Singleton_Manager::instance ()->at_exit_i (
+ object,
+ (ACE_CLEANUP_FUNC) ace_cleanup_destroyer,
+ param);
+}
+
+ACE_INLINE
+int
+TAO_Singleton_Manager::at_exit (void *object,
+ ACE_CLEANUP_FUNC cleanup_hook,
+ void *param)
+{
+ return TAO_Singleton_Manager::instance ()->at_exit_i (
+ object,
+ cleanup_hook,
+ param);
+}