diff options
author | irfan <irfan@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 1999-05-21 01:38:16 +0000 |
---|---|---|
committer | irfan <irfan@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 1999-05-21 01:38:16 +0000 |
commit | df9eb80fce8b5cc9c7b39553c88c2eb5087cebfc (patch) | |
tree | f56a8e39db58f5f5e3d484b4b6f471aac2803441 /TAO/tao/ORB.h | |
parent | dbc86102e20945b4d937dcdad06aba8271d926f4 (diff) | |
download | ATCD-df9eb80fce8b5cc9c7b39553c88c2eb5087cebfc.tar.gz |
Thu May 20 20:29:16 1999 Irfan Pyarali <irfan@cs.wustl.edu>
Diffstat (limited to 'TAO/tao/ORB.h')
-rw-r--r-- | TAO/tao/ORB.h | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/TAO/tao/ORB.h b/TAO/tao/ORB.h index ff45b06fdd1..4fde0587760 100644 --- a/TAO/tao/ORB.h +++ b/TAO/tao/ORB.h @@ -333,7 +333,7 @@ public: // ORB_Core has special privileges friend class TAO_ORB_Core; - friend TAO_Export TAO_ORB_Core* TAO_ORB_Core_instance (void); + friend TAO_Export TAO_ORB_Core *TAO_ORB_Core_instance (void); class TAO_Export InvalidName : public CORBA_UserException { @@ -632,6 +632,9 @@ public: CORBA::Boolean _optimize_collocation_objects (void); // Get collocation optimization status. + TAO_ORB_Core *orb_core (void) const; + // Get the ORB core. + #if !defined(__GNUC__) || __GNUC__ > 2 || __GNUC_MINOR__ >= 8 typedef CORBA_ORB_ptr _ptr_type; typedef CORBA_ORB_var _var_type; @@ -640,7 +643,7 @@ public: protected: // We must be created via the <ORB_init> call. - CORBA_ORB (TAO_ORB_Core* orb_core); + CORBA_ORB (TAO_ORB_Core *orb_core); virtual ~CORBA_ORB (void); CORBA_Object_ptr resolve_poa_current (CORBA_Environment &TAO_IN_ENV); @@ -747,7 +750,7 @@ private: TAO_Leader_Follower_Info leader_follower_info_; // Information about the leader follower model - TAO_ORB_Core* orb_core_; + TAO_ORB_Core *orb_core_; // The ORB_Core that created us.... #ifdef TAO_HAS_VALUETYPE |