blob: 23fee918b35c5d12f6788df209cc031045719474 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
// -*- C++ -*-
//
// $Id$
namespace TAO
{
ACE_INLINE
ClientRequestInterceptor_Adapter::ClientRequestInterceptor_Adapter (
TAO_ClientRequestInterceptor_List::TYPE & interceptors,
Invocation_Base * invocation)
: interceptors_ (interceptors)
, invocation_ (invocation)
// , invoke_status_
, len_ (interceptors.size ())
, stack_size_ (0)
, info_ (0)
{
}
}
|