summaryrefslogtreecommitdiff
path: root/ace/Object_Manager.inl
diff options
context:
space:
mode:
Diffstat (limited to 'ace/Object_Manager.inl')
-rw-r--r--ace/Object_Manager.inl35
1 files changed, 0 insertions, 35 deletions
diff --git a/ace/Object_Manager.inl b/ace/Object_Manager.inl
deleted file mode 100644
index 19ba4079a9c..00000000000
--- a/ace/Object_Manager.inl
+++ /dev/null
@@ -1,35 +0,0 @@
-/* -*- C++ -*- */
-// $Id$
-
-ACE_INLINE
-int
-ACE_Object_Manager::at_exit (ACE_Cleanup *object,
- void *param)
-{
- return ACE_Object_Manager::instance ()->at_exit_i (
- object,
- (ACE_CLEANUP_FUNC) ace_cleanup_destroyer,
- param);
-}
-
-ACE_INLINE
-int
-ACE_Object_Manager::at_exit (void *object,
- ACE_CLEANUP_FUNC cleanup_hook,
- void *param)
-{
- return ACE_Object_Manager::instance ()->at_exit_i (
- object,
- cleanup_hook,
- param);
-}
-
-ACE_INLINE
-ACE_Sig_Set &
-ACE_Object_Manager::default_mask (void)
-{
- // A safe cast, but this static method shouldn't be used anyways.
- // Use ACE_Object_Manager::default_mask () instead.
- return
- *reinterpret_cast<ACE_Sig_Set *> (ACE_OS_Object_Manager::default_mask ());
-}