00001 // -*- C++ -*- 00002 00003 //$Id: Pluggable_Messaging_Utils.inl 77992 2007-04-12 10:53:16Z johnnyw $ 00004 00005 TAO_BEGIN_VERSIONED_NAMESPACE_DECL 00006 00007 ACE_INLINE 00008 TAO_Pluggable_Reply_Params_Base::TAO_Pluggable_Reply_Params_Base (void) 00009 : svc_ctx_ (), 00010 request_id_ (0), 00011 reply_status_ (0), 00012 is_dsi_ (0), 00013 dsi_nvlist_align_ (0), 00014 argument_flag_ (false), 00015 service_context_ (0) 00016 { 00017 } 00018 00019 ACE_INLINE void 00020 TAO_Pluggable_Reply_Params_Base::service_context_notowned ( 00021 IOP::ServiceContextList *svc) 00022 { 00023 this->service_context_ = svc; 00024 } 00025 00026 ACE_INLINE IOP::ServiceContextList & 00027 TAO_Pluggable_Reply_Params_Base::service_context_notowned (void) 00028 { 00029 return *this->service_context_; 00030 } 00031 00032 TAO_END_VERSIONED_NAMESPACE_DECL