summaryrefslogtreecommitdiff
path: root/TAO/tao/IIOP_ORB.i
blob: 3f04414db0f2fe4c647e49195ba67b53dc25faf6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
// $Id$

ACE_INLINE
IIOP_ORB::IIOP_ORB(void)
  : use_omg_ior_format_(CORBA::B_FALSE),
    optimize_collocation_objects_ (CORBA::B_TRUE)
{
}

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_;
}

ACE_INLINE void
IIOP_ORB::_optimize_collocation_objects (CORBA::Boolean opt)
{
  optimize_collocation_objects_ = opt;
}

ACE_INLINE CORBA::Boolean
IIOP_ORB::_optimize_collocation_objects (void)
{
  return optimize_collocation_objects_;
}