blob: 86711dd57fd309254ffd32e8c5c4799d5d19ccdb (
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
|
// This may look like C, but it's really -*- C++ -*-
//
// $Id$
//
ACE_INLINE
TAO_GIOP_Asynch_Invocation::TAO_GIOP_Asynch_Invocation (
TAO_Stub *stub,
const char *operation,
CORBA::ULong opname_len,
CORBA::Boolean argument_flag,
TAO_ORB_Core *orb_core,
int byte_order
)
: TAO_GIOP_Invocation (stub,
operation,
opname_len,
argument_flag,
orb_core,
byte_order),
rd_ (0)
{
}
|