summaryrefslogtreecommitdiff
path: root/TAO/orbsvcs/orbsvcs/Notify/Subscription_Change_Worker.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/orbsvcs/orbsvcs/Notify/Subscription_Change_Worker.cpp')
-rw-r--r--TAO/orbsvcs/orbsvcs/Notify/Subscription_Change_Worker.cpp15
1 files changed, 11 insertions, 4 deletions
diff --git a/TAO/orbsvcs/orbsvcs/Notify/Subscription_Change_Worker.cpp b/TAO/orbsvcs/orbsvcs/Notify/Subscription_Change_Worker.cpp
index 4856d2a62b6..70e0e846b04 100644
--- a/TAO/orbsvcs/orbsvcs/Notify/Subscription_Change_Worker.cpp
+++ b/TAO/orbsvcs/orbsvcs/Notify/Subscription_Change_Worker.cpp
@@ -1,13 +1,18 @@
// $Id$
-#include "Subscription_Change_Worker.h"
+#include "orbsvcs/Notify/Subscription_Change_Worker.h"
-#include "Proxy.h"
+#include "orbsvcs/Notify/Proxy.h"
ACE_RCSID(Notify, TAO_Subscription_Change_Worker, "$Id$")
-TAO_Notify_Subscription_Change_Worker::TAO_Notify_Subscription_Change_Worker (const CosNotification::EventTypeSeq & added, const CosNotification::EventTypeSeq & removed)
-:added_ (added), removed_ (removed)
+
+TAO_BEGIN_VERSIONED_NAMESPACE_DECL
+
+TAO_Notify_Subscription_Change_Worker::TAO_Notify_Subscription_Change_Worker (
+ const CosNotification::EventTypeSeq & added,
+ const CosNotification::EventTypeSeq & removed)
+ : added_ (added), removed_ (removed)
{
}
@@ -20,3 +25,5 @@ TAO_Notify_Subscription_Change_Worker::work (TAO_Notify_Proxy* proxy ACE_ENV_ARG
{
proxy->admin_types_changed (this->added_, this->removed_ ACE_ENV_ARG_PARAMETER);
}
+
+TAO_END_VERSIONED_NAMESPACE_DECL