summaryrefslogtreecommitdiff
path: root/TAO/tao/TAO_Singleton_Manager.inl
diff options
context:
space:
mode:
authorWilliam R. Otte <wotte@dre.vanderbilt.edu>2006-07-24 15:50:21 +0000
committerWilliam R. Otte <wotte@dre.vanderbilt.edu>2006-07-24 15:50:21 +0000
commit3aff90f4a822fcf5d902bbfbcc9fa931d6191a8c (patch)
tree197c810e5f5bce17b1233a7cb8d7b50c0bcd25e2 /TAO/tao/TAO_Singleton_Manager.inl
parent6b846cf03c0bcbd8c276cb0af61a181e5f98eaae (diff)
downloadATCD-3aff90f4a822fcf5d902bbfbcc9fa931d6191a8c.tar.gz
Repo restructuring
Diffstat (limited to 'TAO/tao/TAO_Singleton_Manager.inl')
-rw-r--r--TAO/tao/TAO_Singleton_Manager.inl30
1 files changed, 30 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..a9c35b8fa13
--- /dev/null
+++ b/TAO/tao/TAO_Singleton_Manager.inl
@@ -0,0 +1,30 @@
+// -*- C++ -*-
+//
+// $Id$
+
+TAO_BEGIN_VERSIONED_NAMESPACE_DECL
+
+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_NAME,
+ 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);
+}
+
+TAO_END_VERSIONED_NAMESPACE_DECL