summaryrefslogtreecommitdiff
path: root/TAO/tao/Stub.h
diff options
context:
space:
mode:
authordoccvs <doccvs@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2000-12-19 03:00:43 +0000
committerdoccvs <doccvs@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2000-12-19 03:00:43 +0000
commit68d762e3aaa0aecb4153d37d9a58b11c3d8e6687 (patch)
treec38a582b9d2f194fbdfe27cc1807daeec8329826 /TAO/tao/Stub.h
parent9acc98a6d1a9965b8d5a9326e1762701817f4ae7 (diff)
downloadATCD-68d762e3aaa0aecb4153d37d9a58b11c3d8e6687.tar.gz
ChangeLogTag: Mon Dec 18 18:37:53 2000 Priyanka Gontla <pgontla@ece.uci.edu>
Diffstat (limited to 'TAO/tao/Stub.h')
-rw-r--r--TAO/tao/Stub.h40
1 files changed, 21 insertions, 19 deletions
diff --git a/TAO/tao/Stub.h b/TAO/tao/Stub.h
index d15ca555f3e..f2e48fdfe1c 100644
--- a/TAO/tao/Stub.h
+++ b/TAO/tao/Stub.h
@@ -142,18 +142,21 @@ public:
#if (TAO_HAS_RT_CORBA == 1)
- /// Returns the RTCORBA::PriorityModelPolicy exported
+ /// Returns the CORBA::Policy (which will be narrowed to be
+ /// used as RTCORBA::PriorityModelPolicy) exported
/// in object's IOR.
- TAO_PriorityModelPolicy *exposed_priority_model (void);
-
- /// Returns the RTCORBA::PriorityBandedConnectionPolicy exported
+ CORBA::Policy *exposed_priority_model (void);
+
+ /// Returns the CORBA::Policy (which will be narrowed and used
+ /// as RTCORBA::PriorityBandedConnectionPolicy) exported
/// in object's IOR.
- TAO_PriorityBandedConnectionPolicy *exposed_priority_banded_connection (void);
-
- /// Returns the RTCORBA::ClientProtocolPolicy exported
+ CORBA::Policy *exposed_priority_banded_connection (void);
+
+ /// Returns the CORBA::Policy (which will be narrowed and used
+ /// as RTCORBA::ClientProtocolPolicy) exported
/// in object's IOR.
- TAO_ClientProtocolPolicy *exposed_client_protocol (void);
-
+ CORBA::Policy *exposed_client_protocol (void);
+
# endif /*TAO_HAS_RT_CORBA == 1*/
// = Methods for obtaining effective overrides.
@@ -183,12 +186,11 @@ public:
#if (TAO_HAS_RT_CORBA == 1)
- TAO_PrivateConnectionPolicy *private_connection (void);
+ CORBA::Policy *private_connection (void);
- TAO_PriorityBandedConnectionPolicy *
- priority_banded_connection (void);
+ CORBA::Policy *priority_banded_connection (void);
- TAO_ClientProtocolPolicy *client_protocol (void);
+ CORBA::Policy *client_protocol (void);
// = Methods for obtaining effective policies.
//
@@ -197,11 +199,11 @@ public:
// override for a given policy type, and then reconciling it with
// the policy value exported in the Object's IOR.
- TAO_PriorityBandedConnectionPolicy *
+ CORBA::Policy *
effective_priority_banded_connection (CORBA::Environment
&ACE_TRY_ENV =
TAO_default_environment ());
- TAO_ClientProtocolPolicy *
+ CORBA::Policy *
effective_client_protocol (CORBA::Environment &ACE_TRY_ENV =
TAO_default_environment ());
@@ -222,7 +224,7 @@ public:
* equivalent).
*/
CORBA::ULong hash (CORBA::ULong maximum,
- CORBA_Environment &ACE_TRY_ENV = TAO_default_environment ());
+ CORBA_Environment &ACE_TRY_ENV = TAO_default_environment ());
/// Implement the is_equivalent() method for the CORBA::Object
CORBA::Boolean is_equivalent (CORBA::Object_ptr other_obj);
@@ -380,11 +382,11 @@ private:
// parse the MProfile's policy list each time we
// are asked about a given policy.
- TAO_PriorityModelPolicy *priority_model_policy_;
+ CORBA::Policy *priority_model_policy_;
- TAO_PriorityBandedConnectionPolicy *priority_banded_connection_policy_;
+ CORBA::Policy *priority_banded_connection_policy_;
- TAO_ClientProtocolPolicy *client_protocol_policy_;
+ CORBA::Policy *client_protocol_policy_;
CORBA::Boolean are_policies_parsed_;