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
|
// -*- C++ -*-
//
// $Id$
TAO_BEGIN_VERSIONED_NAMESPACE_DECL
namespace TAO
{
ACE_INLINE
Invocation_Adapter::Invocation_Adapter (
CORBA::Object *target,
Argument **args,
int arg_number,
const char *operation,
size_t op_len,
Collocation_Proxy_Broker *p,
Invocation_Type type,
Invocation_Mode mode)
: target_ (target)
, args_ (args)
, number_args_ (arg_number)
, operation_ (operation)
, op_len_ (op_len)
, cpb_ (p)
, type_ (type)
, mode_ (mode)
{
}
}
TAO_END_VERSIONED_NAMESPACE_DECL
|