blob: c540c7943d46901c741a2c91aa15cb8ee8f66fa7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
// -*- C++ -*-
//
// $Id$
ACE_INLINE
TAO_ClientRequestInterceptor_Adapter::TAO_ClientRequestInterceptor_Adapter
(TAO_ClientRequestInterceptor_List::TYPE & interceptors,
TAO_GIOP_Invocation * invocation,
int & invoke_status)
: interceptors_ (interceptors),
invocation_ (invocation),
invoke_status_ (invoke_status),
len_ (interceptors.size ()),
stack_size_ (0),
info_ (0)
{
}
|