Revert "Minor modernization of DynamicAny code"
[ACE_TAO.git] / TAO / tao / Pluggable_Messaging_Utils.inl
blobaaef69fee3afe2ca088464380889b6a4cf023073
1 // -*- C++ -*-
3 TAO_BEGIN_VERSIONED_NAMESPACE_DECL
5 ACE_INLINE
6 TAO_Pluggable_Reply_Params_Base::TAO_Pluggable_Reply_Params_Base ()
7   : svc_ctx_ (),
8     request_id_ (0),
9     is_dsi_ (0),
10     dsi_nvlist_align_ (0),
11     argument_flag_ (false),
12     service_context_ (0),
13     reply_status_ (GIOP::NO_EXCEPTION),
14     locate_reply_status_ (GIOP::UNKNOWN_OBJECT)
18 ACE_INLINE GIOP::ReplyStatusType
19 TAO_Pluggable_Reply_Params_Base::reply_status () const
21   return this->reply_status_;
24 ACE_INLINE void
25 TAO_Pluggable_Reply_Params_Base::reply_status (GIOP::ReplyStatusType status)
27   this->reply_status_ = status;
30 ACE_INLINE GIOP::LocateStatusType
31 TAO_Pluggable_Reply_Params_Base::locate_reply_status () const
33   return this->locate_reply_status_;
36 ACE_INLINE void
37 TAO_Pluggable_Reply_Params_Base::locate_reply_status (GIOP::LocateStatusType status)
39   this->locate_reply_status_ = status;
42 ACE_INLINE void
43 TAO_Pluggable_Reply_Params_Base::service_context_notowned (
44     IOP::ServiceContextList *svc)
46   this->service_context_ = svc;
49 ACE_INLINE IOP::ServiceContextList &
50 TAO_Pluggable_Reply_Params_Base::service_context_notowned ()
52   return *this->service_context_;
55 TAO_END_VERSIONED_NAMESPACE_DECL