summaryrefslogtreecommitdiff
path: root/ACE/ace/Cleanup.inl
diff options
context:
space:
mode:
Diffstat (limited to 'ACE/ace/Cleanup.inl')
-rw-r--r--ACE/ace/Cleanup.inl30
1 files changed, 30 insertions, 0 deletions
diff --git a/ACE/ace/Cleanup.inl b/ACE/ace/Cleanup.inl
new file mode 100644
index 00000000000..2f3410a1ebb
--- /dev/null
+++ b/ACE/ace/Cleanup.inl
@@ -0,0 +1,30 @@
+// -*- C++ -*-
+//
+// $Id$
+
+ACE_BEGIN_VERSIONED_NAMESPACE_DECL
+
+ACE_INLINE
+ACE_Cleanup::ACE_Cleanup (void)
+{
+}
+
+ACE_INLINE void*
+ACE_Cleanup_Info_Node::object(void)
+{
+ return this->object_;
+}
+
+ACE_INLINE ACE_CLEANUP_FUNC
+ACE_Cleanup_Info_Node::cleanup_hook (void)
+{
+ return this->cleanup_hook_;
+}
+
+ACE_INLINE void *
+ACE_Cleanup_Info_Node::param (void)
+{
+ return this->param_;
+}
+
+ACE_END_VERSIONED_NAMESPACE_DECL