3 TAO_BEGIN_VERSIONED_NAMESPACE_DECL
6 TAO_Pluggable_Reply_Params_Base::TAO_Pluggable_Reply_Params_Base ()
10 dsi_nvlist_align_ (0),
11 argument_flag_ (false),
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_;
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_;
37 TAO_Pluggable_Reply_Params_Base::locate_reply_status (GIOP::LocateStatusType status)
39 this->locate_reply_status_ = status;
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