diff options
author | schmidt <douglascraigschmidt@users.noreply.github.com> | 1998-03-22 06:16:20 +0000 |
---|---|---|
committer | schmidt <douglascraigschmidt@users.noreply.github.com> | 1998-03-22 06:16:20 +0000 |
commit | 3dcad1e906d4453b09891ee7bc55ae7932fe604f (patch) | |
tree | 013cd1db3d6a3ad7fc6a076ee28eddde0f43544e /TAO/tao/IIOP_ORB.i | |
parent | af1e2e53f6381dba517ad4d3d832083dcbff0e73 (diff) | |
download | ATCD-3dcad1e906d4453b09891ee7bc55ae7932fe604f.tar.gz |
*** empty log message ***
Diffstat (limited to 'TAO/tao/IIOP_ORB.i')
-rw-r--r-- | TAO/tao/IIOP_ORB.i | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/TAO/tao/IIOP_ORB.i b/TAO/tao/IIOP_ORB.i new file mode 100644 index 00000000000..445abbe7190 --- /dev/null +++ b/TAO/tao/IIOP_ORB.i @@ -0,0 +1,25 @@ +// $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_; +} |