/usr/include/tao/Invocation_Base.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 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 | // -*- C++ -*-
//
// $Id: Invocation_Base.inl 82354 2008-07-22 11:34:18Z johnnyw $
TAO_BEGIN_VERSIONED_NAMESPACE_DECL
namespace TAO
{
ACE_INLINE TAO_Stub *
Invocation_Base::stub (void) const
{
return this->stub_;
}
ACE_INLINE void
Invocation_Base::forwarded_reference (CORBA::Object_ptr o)
{
this->forwarded_to_ = CORBA::Object::_duplicate (o);
this->reply_status_ = GIOP::LOCATION_FORWARD;
}
ACE_INLINE CORBA::Object_ptr
Invocation_Base::forwarded_reference (void)
{
return CORBA::Object::_duplicate (this->forwarded_to_.in ());
}
ACE_INLINE CORBA::Object_ptr
Invocation_Base::steal_forwarded_reference (void)
{
this->reply_status_ = GIOP::NO_EXCEPTION;
return this->forwarded_to_._retn ();
}
ACE_INLINE CORBA::Boolean
Invocation_Base::response_expected (void) const
{
return this->response_expected_;
}
ACE_INLINE GIOP::ReplyStatusType
Invocation_Base::reply_status (void) const
{
return this->reply_status_;
}
ACE_INLINE void
Invocation_Base::reply_status (GIOP::ReplyStatusType s)
{
this->reply_status_ = s;
}
ACE_INLINE CORBA::Object_ptr
Invocation_Base::target (void) const
{
return this->otarget_;
}
ACE_INLINE CORBA::Object_ptr
Invocation_Base::effective_target (void) const
{
return this->target_;
}
ACE_INLINE TAO_Operation_Details &
Invocation_Base::operation_details (void)
{
return this->details_;
}
#if TAO_HAS_INTERCEPTORS == 1
ACE_INLINE size_t &
Invocation_Base::stack_size (void)
{
return this->stack_size_;
}
ACE_INLINE CORBA::Exception *
Invocation_Base::caught_exception (void)
{
return this->caught_exception_;
}
ACE_INLINE TAO::Invocation_Status
Invocation_Base::invoke_status (void) const
{
return this->invoke_status_;
}
ACE_INLINE void
Invocation_Base::invoke_status (Invocation_Status s)
{
this->invoke_status_ = s;
}
ACE_INLINE bool
Invocation_Base::is_remote_request (void) const
{
return this->is_remote_request_;
}
#endif /* TAO_HAS_INTERCEPTORS */
}
TAO_END_VERSIONED_NAMESPACE_DECL
|