diff options
author | schmidt <douglascraigschmidt@users.noreply.github.com> | 1997-07-02 05:14:19 +0000 |
---|---|---|
committer | schmidt <douglascraigschmidt@users.noreply.github.com> | 1997-07-02 05:14:19 +0000 |
commit | 05834cf795347886b4daf40d2497a4efae91aec3 (patch) | |
tree | 342202567424d86b13f973916f58c0511331046f /TAO/tao/iioporb.i | |
parent | 1a9acde7970222a4434ccf485d0895090960da7b (diff) | |
download | ATCD-05834cf795347886b4daf40d2497a4efae91aec3.tar.gz |
*** empty log message ***
Diffstat (limited to 'TAO/tao/iioporb.i')
-rw-r--r-- | TAO/tao/iioporb.i | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/TAO/tao/iioporb.i b/TAO/tao/iioporb.i new file mode 100644 index 00000000000..16bed67867e --- /dev/null +++ b/TAO/tao/iioporb.i @@ -0,0 +1,23 @@ +// $Id$ + +ACE_INLINE +IIOP_ORB::IIOP_ORB(void) + : use_omg_ior_format_(CORBA_B_FALSE) +{} + +ACE_INLINE +IIOP_ORB::~IIOP_ORB(void) +{} + + +ACE_INLINE void +IIOP_ORB::use_omg_ior_format (CORBA_Boolean ior) +{ + use_omg_ior_format_ = ior; +} + +ACE_INLINE CORBA_Boolean +IIOP_ORB::use_omg_ior_format (void) +{ + return use_omg_ior_format_; +} |