diff options
author | coryan <coryan@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 1999-03-27 00:00:09 +0000 |
---|---|---|
committer | coryan <coryan@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 1999-03-27 00:00:09 +0000 |
commit | a971a2afbe3406feca5d14f24108827c6f05c279 (patch) | |
tree | 20e6adb58c249704ab6b9e54ab56490205109928 /TAO/tao/ORB.i | |
parent | 0ef66b06989a0c80401ff101fffedd5d349ba9fd (diff) | |
download | ATCD-a971a2afbe3406feca5d14f24108827c6f05c279.tar.gz |
ChangeLogTag:Fri Mar 26 17:58:58 1999 Carlos O'Ryan <coryan@cs.wustl.edu>
Diffstat (limited to 'TAO/tao/ORB.i')
-rw-r--r-- | TAO/tao/ORB.i | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/TAO/tao/ORB.i b/TAO/tao/ORB.i index 75f99ee6f77..ba7d47392c5 100644 --- a/TAO/tao/ORB.i +++ b/TAO/tao/ORB.i @@ -226,6 +226,30 @@ CORBA_ORB::orb_free_resources (void) return !CORBA_ORB::orb_init_count_; } +ACE_INLINE void +CORBA_ORB::_use_omg_ior_format (CORBA::Boolean ior) +{ + this->use_omg_ior_format_ = ior; +} + +ACE_INLINE CORBA::Boolean +CORBA_ORB::_use_omg_ior_format (void) +{ + return this->use_omg_ior_format_; +} + +ACE_INLINE void +CORBA_ORB::_optimize_collocation_objects (CORBA::Boolean opt) +{ + this->optimize_collocation_objects_ = opt; +} + +ACE_INLINE CORBA::Boolean +CORBA_ORB::_optimize_collocation_objects (void) +{ + return this->optimize_collocation_objects_; +} + // ************************************************************* // Inline operations for class CORBA_ORB_var // ************************************************************* |