/usr/include/tao/Invocation_Adapter.inl is in libtao-dev 6.0.1-3.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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: Invocation_Adapter.inl 78128 2007-04-20 08:07:58Z johnnyw $
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
|