blob: e3cab2239ef66d5dc9a846506129a436ba91cac1 (
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
|
// -*- C++ -*-
// $Id$
// ****************************************************************
ACE_INLINE TAO_ORB_Core *
TAO_Transport::orb_core (void) const
{
return this->orb_core_;
}
ACE_INLINE TAO_Transport_Mux_Strategy *
TAO_Transport::tms (void) const
{
return tms_;
}
// Return the Wait strategy used by the Transport.
ACE_INLINE TAO_Wait_Strategy *
TAO_Transport::wait_strategy (void) const
{
return this->ws_;
}
// ****************************************************************
ACE_INLINE
TAO_Profile::TAO_Profile (CORBA::ULong tag)
: tag_ (tag),
forward_to_ (0),
refcount_ (1)
{
}
ACE_INLINE void
TAO_Profile::forward_to (TAO_MProfile *mprofiles)
{
this->forward_to_ = mprofiles;
}
ACE_INLINE TAO_MProfile *
TAO_Profile::forward_to (void)
{
return this->forward_to_;
}
ACE_INLINE TAO_MProfile *
TAO_Profile::forward_to_i (void)
{
return this->forward_to_;
}
|