summaryrefslogtreecommitdiff
path: root/TAO/tao/RTCORBA/RT_Transport_Descriptor_Property.inl
blob: c6646a943fbfc0b67b836712f1edca716828226e (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
39
40
41
42
43
44
45
46
47
48
49
50
51
// $Id$

ACE_INLINE
TAO_RT_Transport_Descriptor_Property::TAO_RT_Transport_Descriptor_Property (void)
  : next_ (0)
{
}

/*************************************************************************************************/
ACE_INLINE
TAO_RT_Transport_Descriptor_Private_Connection_Property::TAO_RT_Transport_Descriptor_Private_Connection_Property (void)
  : object_id_ (-1)
{
}

ACE_INLINE
TAO_RT_Transport_Descriptor_Private_Connection_Property::TAO_RT_Transport_Descriptor_Private_Connection_Property (long object_id)
  : object_id_ (object_id)
{
}

ACE_INLINE void
TAO_RT_Transport_Descriptor_Private_Connection_Property::init (long object_id)
{
  this->object_id_ = object_id;
}

/*************************************************************************************************/

ACE_INLINE
TAO_RT_Transport_Descriptor_Banded_Connection_Property::TAO_RT_Transport_Descriptor_Banded_Connection_Property (void)
  : low_priority_ (-1)
  , high_priority_ (-1)
{
}

ACE_INLINE
TAO_RT_Transport_Descriptor_Banded_Connection_Property::TAO_RT_Transport_Descriptor_Banded_Connection_Property (CORBA::Short low_priority,
                                                                                                                CORBA::Short high_priority)
  : low_priority_ (low_priority)
  , high_priority_ (high_priority)
{
}

ACE_INLINE void
TAO_RT_Transport_Descriptor_Banded_Connection_Property::init (CORBA::Short low_priority,
                                                              CORBA::Short high_priority)
{
  this->low_priority_ = low_priority;
  this->high_priority_ = high_priority;
}