blob: 97bcf5291f40566595f305732e11f7e45cb5671d (
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
|
//$Id$
ACE_INLINE
TAO_Transport_Descriptor_Interface::
TAO_Transport_Descriptor_Interface (TAO_Endpoint *endpoint,
CORBA::Boolean flag)
: endpoint_ (endpoint),
bidir_flag_ (0),
endpoint_from_heap_ (flag)
{
}
ACE_INLINE
TAO_Transport_Descriptor_Interface::
TAO_Transport_Descriptor_Interface (void)
: endpoint_ (0),
bidir_flag_ (0),
endpoint_from_heap_ (0)
{
}
ACE_INLINE TAO_Endpoint *
TAO_Transport_Descriptor_Interface::endpoint (void)
{
return this->endpoint_;
}
ACE_INLINE void
TAO_Transport_Descriptor_Interface::set_bidir_flag (CORBA::Boolean flag)
{
this->bidir_flag_ = flag;
}
|