summaryrefslogtreecommitdiff
path: root/TAO/orbsvcs/orbsvcs/Notify/Notify_EventChannelFactory_i.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/orbsvcs/orbsvcs/Notify/Notify_EventChannelFactory_i.cpp')
-rw-r--r--TAO/orbsvcs/orbsvcs/Notify/Notify_EventChannelFactory_i.cpp10
1 files changed, 7 insertions, 3 deletions
diff --git a/TAO/orbsvcs/orbsvcs/Notify/Notify_EventChannelFactory_i.cpp b/TAO/orbsvcs/orbsvcs/Notify/Notify_EventChannelFactory_i.cpp
index fb3587a0e78..2bc881f15a7 100644
--- a/TAO/orbsvcs/orbsvcs/Notify/Notify_EventChannelFactory_i.cpp
+++ b/TAO/orbsvcs/orbsvcs/Notify/Notify_EventChannelFactory_i.cpp
@@ -1,12 +1,14 @@
// $Id$
-#include "Notify_EventChannelFactory_i.h"
+#include "orbsvcs/Notify/Notify_EventChannelFactory_i.h"
-#include "Service.h"
+#include "orbsvcs/Notify/Service.h"
#include "ace/Dynamic_Service.h"
#include "tao/PortableServer/Root_POA.h"
#include "tao/ORB_Core.h"
+TAO_BEGIN_VERSIONED_NAMESPACE_DECL
+
CosNotifyChannelAdmin::EventChannelFactory_ptr
TAO_Notify_EventChannelFactory_i::create (PortableServer::POA_ptr default_POA ACE_ENV_ARG_DECL)
{
@@ -20,7 +22,7 @@ TAO_Notify_EventChannelFactory_i::create (PortableServer::POA_ptr default_POA AC
return notify_factory._retn ();
}
- TAO_Root_POA *poa = dynamic_cast <TAO_Root_POA*>(default_POA);
+ TAO_Root_POA *poa = dynamic_cast <TAO_Root_POA*> (default_POA);
if (poa == 0)
return notify_factory._retn ();
@@ -35,3 +37,5 @@ TAO_Notify_EventChannelFactory_i::create (PortableServer::POA_ptr default_POA AC
return notify_factory._retn ();
}
+
+TAO_END_VERSIONED_NAMESPACE_DECL