summaryrefslogtreecommitdiff
path: root/TAO/tao/Interceptor_List.inl
blob: 9b860ae014382946ad30cf572fa61a49884ce203 (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
// -*- 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 */

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

ACE_INLINE size_t
TAO_IORInterceptor_List::add_interceptor_helper (
    PortableInterceptor::Interceptor_ptr interceptor
    ACE_ENV_ARG_DECL
  )
{
  return this->add_interceptor_i (interceptor
                                  ACE_ENV_ARG_PARAMETER);
}

ACE_INLINE TAO_IORInterceptor_List::TYPE &
TAO_IORInterceptor_List::interceptors (void)
{
  return this->interceptors_;
}