summaryrefslogtreecommitdiff
path: root/TAO/IIOP/lib/iioporb.i
blob: 16bed67867edb653dfd3d908fce423b52584f527 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
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_;
}