summaryrefslogtreecommitdiff
path: root/TAO/tao/Interceptor_List.inl
blob: b26c74f0aec93a3f6b0962805fbef274944d44f2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
// -*- C++ -*-
//
// $Id$

#if TAO_HAS_INTERCEPTORS == 1
ACE_INLINE TAO_ClientRequestInterceptor_List::TYPE &
TAO_ClientRequestInterceptor_List::interceptors (void)
{
  return this->interceptors_;
}

// ------------------

ACE_INLINE TAO_ServerRequestInterceptor_List::TYPE &
TAO_ServerRequestInterceptor_List::interceptors (void)
{
  return this->interceptors_;
}
#endif  /* TAO_HAS_INTERCEPTORS == 1 */

// ------------------