/usr/include/tao/Environment.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 | // -*- C++ -*-
//
// $Id: Environment.inl 91262 2010-08-03 14:02:36Z parsons $
#include "ace/OS_Memory.h"
TAO_BEGIN_VERSIONED_NAMESPACE_DECL
ACE_INLINE
CORBA::Exception *
CORBA::Environment::exception (void) const
{
return this->exception_;
}
ACE_INLINE
CORBA::Environment *
CORBA::Environment::_duplicate (CORBA::Environment *x)
{
if (x == 0)
{
return 0;
}
CORBA::Environment* ptr = 0;
ACE_NEW_RETURN (ptr,
CORBA::Environment (*x),
0);
return ptr;
}
ACE_INLINE
CORBA::Environment_ptr
CORBA::Environment::_nil (void)
{
return static_cast <CORBA::Environment_ptr> (0);
}
TAO_END_VERSIONED_NAMESPACE_DECL
|