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

#include "RT_Transport_Descriptor.h"

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