summaryrefslogtreecommitdiff
path: root/TAO/tao/RTCORBA/RT_Transport_Descriptor.inl
blob: 0c158812e9fcf1dadfa4f322da2afb0c009bdd5c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
// $Id$

ACE_INLINE
TAO_RT_Transport_Descriptor::TAO_RT_Transport_Descriptor (TAO_Endpoint *endpoint,
                                                          CORBA::Boolean flag)
  : TAO_Transport_Descriptor_Interface (endpoint, flag)
  , property_list_ (0)
  , delete_properties_ (flag)
{
}

ACE_INLINE void
TAO_RT_Transport_Descriptor::insert (TAO_RT_Transport_Descriptor_Property *descriptor_property)
{
  descriptor_property->next_ = this->property_list_;

  this->property_list_ = descriptor_property;
}