summaryrefslogtreecommitdiff
path: root/TAO/tao/RTCORBA/RT_Stub.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/tao/RTCORBA/RT_Stub.cpp')
-rw-r--r--TAO/tao/RTCORBA/RT_Stub.cpp14
1 files changed, 9 insertions, 5 deletions
diff --git a/TAO/tao/RTCORBA/RT_Stub.cpp b/TAO/tao/RTCORBA/RT_Stub.cpp
index 6804f192d18..a82714e4802 100644
--- a/TAO/tao/RTCORBA/RT_Stub.cpp
+++ b/TAO/tao/RTCORBA/RT_Stub.cpp
@@ -1,10 +1,10 @@
// $Id$
-#include "RT_Stub.h"
+#include "tao/RTCORBA/RT_Stub.h"
#if defined (TAO_HAS_CORBA_MESSAGING) && TAO_HAS_CORBA_MESSAGING != 0
-#include "RT_Policy_i.h"
+#include "tao/RTCORBA/RT_Policy_i.h"
#include "tao/ORB_Core.h"
#include "tao/Policy_Set.h"
#include "tao/Policy_Manager.h"
@@ -15,6 +15,8 @@ ACE_RCSID (RTCORBA,
"$Id$")
+TAO_BEGIN_VERSIONED_NAMESPACE_DECL
+
TAO_RT_Stub::TAO_RT_Stub (const char *repository_id,
const TAO_MProfile &profiles,
TAO_ORB_Core *orb_core)
@@ -54,15 +56,15 @@ TAO_RT_Stub::parse_policies (ACE_ENV_SINGLE_ARG_DECL)
{
if (policy_list[i]->policy_type () ==
RTCORBA::PRIORITY_MODEL_POLICY_TYPE)
- this->exposed_priority_model (policy_list[i].in ());
+ this->exposed_priority_model (policy_list[i]);
else if (policy_list[i]->policy_type () ==
RTCORBA::PRIORITY_BANDED_CONNECTION_POLICY_TYPE)
- this->exposed_priority_banded_connection (policy_list[i].in ());
+ this->exposed_priority_banded_connection (policy_list[i]);
else if (policy_list[i]->policy_type () ==
RTCORBA::CLIENT_PROTOCOL_POLICY_TYPE)
- this->exposed_client_protocol (policy_list[i].in ());
+ this->exposed_client_protocol (policy_list[i]);
}
this->are_policies_parsed_ = 1;
@@ -297,4 +299,6 @@ TAO_RT_Stub::effective_client_protocol (ACE_ENV_SINGLE_ARG_DECL)
0);
}
+TAO_END_VERSIONED_NAMESPACE_DECL
+
#endif /* TAO_HAS_CORBA_MESSAGING && TAO_HAS_CORBA_MESSAGING != 0 */