/usr/include/tao/UserException.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 | // -*- C++ -*-
//
// $Id: UserException.inl 69153 2005-11-02 11:03:27Z ossama $
TAO_BEGIN_VERSIONED_NAMESPACE_DECL
ACE_INLINE
CORBA::UserException::UserException (void)
{
}
ACE_INLINE
CORBA::UserException::UserException (char const * repository_id,
char const * local_name)
: CORBA::Exception (repository_id,
local_name)
{
}
ACE_INLINE
CORBA::UserException::UserException (CORBA::UserException const & rhs)
: CORBA::Exception (rhs)
{
}
ACE_INLINE CORBA::UserException *
CORBA::UserException::_downcast (CORBA::Exception * exception)
{
return dynamic_cast<CORBA::UserException *> (exception);
}
ACE_INLINE const CORBA::UserException *
CORBA::UserException::_downcast (CORBA::Exception const * exception)
{
return dynamic_cast<const CORBA::UserException *> (exception);
}
TAO_END_VERSIONED_NAMESPACE_DECL
|