blob: f1b7102903201702f6d0682735d41419bb4d7f4f (
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
|
/* -*- C++ -*- */
// $Id$
#if (TAO_HAS_RT_CORBA == 1)
ACE_INLINE RTCORBA::PriorityBands &
TAO_PriorityBandedConnectionPolicy::priority_bands_rep (void)
{
return priority_bands_;
}
ACE_INLINE RTCORBA::ProtocolList &
TAO_ClientProtocolPolicy::protocols_rep (void)
{
return protocols_;
}
ACE_INLINE RTCORBA::ProtocolList &
TAO_ServerProtocolPolicy::protocols_rep (void)
{
return protocols_;
}
ACE_INLINE RTCORBA::PriorityModel
TAO_PriorityModelPolicy::get_priority_model (void)
{
return this->priority_model_;
}
#endif /* TAO_HAS_RT_CORBA == 1 */
|