summaryrefslogtreecommitdiff
path: root/tao/Utils/Synch_Refcountable.inl
diff options
context:
space:
mode:
Diffstat (limited to 'tao/Utils/Synch_Refcountable.inl')
-rw-r--r--tao/Utils/Synch_Refcountable.inl29
1 files changed, 0 insertions, 29 deletions
diff --git a/tao/Utils/Synch_Refcountable.inl b/tao/Utils/Synch_Refcountable.inl
deleted file mode 100644
index 2139918ab50..00000000000
--- a/tao/Utils/Synch_Refcountable.inl
+++ /dev/null
@@ -1,29 +0,0 @@
-// -*- C++ -*-
-//
-//$Id$
-
-#include "ace/Guard_T.h"
-
-TAO_BEGIN_VERSIONED_NAMESPACE_DECL
-
-ACE_INLINE int
-TAO_Synch_Refcountable::increment (void)
-{
- ACE_GUARD_RETURN (ACE_Lock, ace_mon, *this->refcount_lock_, 0);
- return ACE_Refcountable::increment ();
-}
-
-ACE_INLINE int
-TAO_Synch_Refcountable::decrement (void)
-{
- ACE_GUARD_RETURN (ACE_Lock, ace_mon, *this->refcount_lock_, 0);
- return ACE_Refcountable::decrement ();
-}
-
-ACE_INLINE int
-TAO_Synch_Refcountable::refcount (void) const
-{
- return ACE_Refcountable::refcount ();
-}
-
-TAO_END_VERSIONED_NAMESPACE_DECL