summaryrefslogtreecommitdiff
path: root/TAO/orbsvcs/orbsvcs/Notify/Peer.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/orbsvcs/orbsvcs/Notify/Peer.cpp')
-rw-r--r--TAO/orbsvcs/orbsvcs/Notify/Peer.cpp11
1 files changed, 3 insertions, 8 deletions
diff --git a/TAO/orbsvcs/orbsvcs/Notify/Peer.cpp b/TAO/orbsvcs/orbsvcs/Notify/Peer.cpp
index 6caa4aa6552..50659fef095 100644
--- a/TAO/orbsvcs/orbsvcs/Notify/Peer.cpp
+++ b/TAO/orbsvcs/orbsvcs/Notify/Peer.cpp
@@ -1,15 +1,13 @@
// $Id$
-#include "orbsvcs/Notify/Peer.h"
+#include "Peer.h"
ACE_RCSID(Notify, TAO_Notify_Peer, "$Id$")
-#include "orbsvcs/Notify/Proxy.h"
+#include "Proxy.h"
#include "tao/debug.h"
-TAO_BEGIN_VERSIONED_NAMESPACE_DECL
-
TAO_Notify_Peer::TAO_Notify_Peer (void)
{
}
@@ -81,8 +79,7 @@ TAO_Notify_Peer::dispatch_updates (const TAO_Notify_EventTypeSeq & added, const
if (cos_added.length () != 0 || cos_removed.length () != 0)
{
- // Protect this object from being destroyed in this scope.
- TAO_Notify_Proxy::Ptr proxy_guard(this->proxy ());
+ TAO_Notify_Proxy::Ptr proxy_guard(this->proxy ()); // Protect this object from being destroyed in this scope.
this->dispatch_updates_i (cos_added, cos_removed ACE_ENV_ARG_PARAMETER);
ACE_TRY_CHECK;
@@ -121,5 +118,3 @@ TAO_Notify_Peer::_decr_refcnt (void)
{
return this->proxy ()->_decr_refcnt ();
}
-
-TAO_END_VERSIONED_NAMESPACE_DECL