/usr/include/tao/DynamicInterface/DII_Arguments.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 32 33 34 35 36 37 38 39 40 | // -*- C++ -*-
//
// $Id: DII_Arguments.inl 76932 2007-02-06 16:34:57Z johnnyw $
TAO_BEGIN_VERSIONED_NAMESPACE_DECL
namespace TAO
{
ACE_INLINE
NamedValue_Argument::NamedValue_Argument (CORBA::NamedValue_ptr x)
: x_ (x)
, byte_order_ (0)
{
}
ACE_INLINE int
NamedValue_Argument::byte_order (void) const
{
return this->byte_order_;
}
// ===================================================================
ACE_INLINE
NVList_Argument::NVList_Argument (CORBA::NVList_ptr x, bool lazy_eval)
: x_ (x)
, lazy_evaluation_ (lazy_eval)
{
}
ACE_INLINE
CORBA::NVList_ptr
NVList_Argument::arg () const
{
return this->x_;
}
}
TAO_END_VERSIONED_NAMESPACE_DECL
|