blob: fa4bd7f6b196d29a2653947fe3f2ef15d6d29a3f (
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
|
/* -*- C++ -*- */
// $Id$
ACE_INLINE
TAO_Base_Transport_Property::TAO_Base_Transport_Property (void)
{
}
ACE_INLINE
TAO_Base_Transport_Property::
TAO_Base_Transport_Property (TAO_Endpoint *endpoint,
CORBA::Boolean flag)
: TAO_Transport_Descriptor_Interface (endpoint,
flag)
{
}
ACE_INLINE
TAO_Base_Transport_Property::TAO_Base_Transport_Property (
const TAO_Base_Transport_Property &rhs)
: TAO_Transport_Descriptor_Interface (rhs.endpoint_->duplicate (),
1)
{
}
|