summaryrefslogtreecommitdiff
path: root/TAO/tao/Cleanup_Func_Registry.inl
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/tao/Cleanup_Func_Registry.inl')
-rw-r--r--TAO/tao/Cleanup_Func_Registry.inl19
1 files changed, 19 insertions, 0 deletions
diff --git a/TAO/tao/Cleanup_Func_Registry.inl b/TAO/tao/Cleanup_Func_Registry.inl
new file mode 100644
index 00000000000..2216dce7c34
--- /dev/null
+++ b/TAO/tao/Cleanup_Func_Registry.inl
@@ -0,0 +1,19 @@
+// -*- C++ -*-
+//
+// $Id$
+
+TAO_BEGIN_VERSIONED_NAMESPACE_DECL
+
+ACE_INLINE
+TAO_Cleanup_Func_Registry::TAO_Cleanup_Func_Registry (void)
+ : cleanup_funcs_ ()
+{
+}
+
+ACE_INLINE size_t
+TAO_Cleanup_Func_Registry::size (void) const
+{
+ return this->cleanup_funcs_.size ();
+}
+
+TAO_END_VERSIONED_NAMESPACE_DECL