summaryrefslogtreecommitdiff
path: root/TAO/tao/RTCORBA/RT_Transport_Descriptor.inl
blob: 3afd7b186e867f414da9f8b22258fa666bc94ced (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
// -*- C++ -*-
//
// $Id$

TAO_BEGIN_VERSIONED_NAMESPACE_DECL

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

TAO_END_VERSIONED_NAMESPACE_DECL