summaryrefslogtreecommitdiff
path: root/TAO/orbsvcs/orbsvcs/Notify/Refcountable.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/orbsvcs/orbsvcs/Notify/Refcountable.cpp')
-rw-r--r--TAO/orbsvcs/orbsvcs/Notify/Refcountable.cpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/TAO/orbsvcs/orbsvcs/Notify/Refcountable.cpp b/TAO/orbsvcs/orbsvcs/Notify/Refcountable.cpp
index ee2d7a24513..6e432eec14e 100644
--- a/TAO/orbsvcs/orbsvcs/Notify/Refcountable.cpp
+++ b/TAO/orbsvcs/orbsvcs/Notify/Refcountable.cpp
@@ -8,19 +8,19 @@
#include "Refcountable.inl"
#endif /* __ACE_INLINE__ */
-ACE_RCSID(Notify, TAO_NS_Refcountable, "$Id$")
+ACE_RCSID(Notify, TAO_Notify_Refcountable, "$Id$")
-TAO_NS_Refcountable::TAO_NS_Refcountable (void)
+TAO_Notify_Refcountable::TAO_Notify_Refcountable (void)
:refcount_ (1)
{
}
-TAO_NS_Refcountable::~TAO_NS_Refcountable ()
+TAO_Notify_Refcountable::~TAO_Notify_Refcountable ()
{
}
CORBA::ULong
-TAO_NS_Refcountable::_incr_refcnt (void)
+TAO_Notify_Refcountable::_incr_refcnt (void)
{
ACE_GUARD_RETURN (TAO_SYNCH_MUTEX, ace_mon, this->lock_, 0);
@@ -32,7 +32,7 @@ TAO_NS_Refcountable::_incr_refcnt (void)
}
CORBA::ULong
-TAO_NS_Refcountable::_decr_refcnt (void)
+TAO_Notify_Refcountable::_decr_refcnt (void)
{
{
ACE_GUARD_RETURN (TAO_SYNCH_MUTEX, ace_mon, this->lock_, 0);