diff options
author | Angelo Corsaro <angelo@icorsaro.net> | 2001-02-09 00:30:17 +0000 |
---|---|---|
committer | Angelo Corsaro <angelo@icorsaro.net> | 2001-02-09 00:30:17 +0000 |
commit | ea50b73f101cdfe0ae5ad004eabefd79ce211191 (patch) | |
tree | 707610cdba462732222b8e9bfa392033a83da527 /TAO/tao/Stub.h | |
parent | fb5db69cd2e7ffc8db9be24e605366a6827e636c (diff) | |
download | ATCD-ea50b73f101cdfe0ae5ad004eabefd79ce211191.tar.gz |
Thu Feb 08 18:15:59 2001 Angelo Corsaro <corsaro@cs.wustl.edu>
Diffstat (limited to 'TAO/tao/Stub.h')
-rw-r--r-- | TAO/tao/Stub.h | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/TAO/tao/Stub.h b/TAO/tao/Stub.h index 69ff268f467..6694cbe36a2 100644 --- a/TAO/tao/Stub.h +++ b/TAO/tao/Stub.h @@ -142,21 +142,21 @@ public: #if (TAO_HAS_RT_CORBA == 1) - /// Returns the CORBA::Policy (which will be narrowed to be + /// Returns the CORBA::Policy (which will be narrowed to be /// used as RTCORBA::PriorityModelPolicy) exported /// in object's IOR. - CORBA::Policy *exposed_priority_model (void); - + CORBA::Policy_ptr exposed_priority_model (CORBA::Environment &ACE_TRY_ENV); + /// Returns the CORBA::Policy (which will be narrowed and used /// as RTCORBA::PriorityBandedConnectionPolicy) exported /// in object's IOR. - CORBA::Policy *exposed_priority_banded_connection (void); - + CORBA::Policy_ptr exposed_priority_banded_connection (CORBA::Environment &ACE_TRY_ENV); + /// Returns the CORBA::Policy (which will be narrowed and used /// as RTCORBA::ClientProtocolPolicy) exported /// in object's IOR. - CORBA::Policy *exposed_client_protocol (void); - + CORBA::Policy_ptr exposed_client_protocol (CORBA::Environment &ACE_TRY_ENV); + # endif /*TAO_HAS_RT_CORBA == 1*/ // = Methods for obtaining effective overrides. @@ -367,7 +367,7 @@ private: private: /// Helper method used to parse the policies. - void parse_policies (void); + void parse_policies (CORBA::Environment &ACE_TRY_ENV); void exposed_priority_model (CORBA::Policy_ptr policy); |