diff options
Diffstat (limited to 'TAO/tao/Pluggable_Messaging_Utils.i')
-rw-r--r-- | TAO/tao/Pluggable_Messaging_Utils.i | 18 |
1 files changed, 15 insertions, 3 deletions
diff --git a/TAO/tao/Pluggable_Messaging_Utils.i b/TAO/tao/Pluggable_Messaging_Utils.i index bff1e9704c0..0aa88955e5d 100644 --- a/TAO/tao/Pluggable_Messaging_Utils.i +++ b/TAO/tao/Pluggable_Messaging_Utils.i @@ -2,16 +2,28 @@ //$Id$ - +ACE_INLINE +TAO_Pluggable_Reply_Params_Base::TAO_Pluggable_Reply_Params_Base (void) + : svc_ctx_ (), + request_id_ (0), + reply_status_ (0), + is_dsi_ (0), + dsi_nvlist_align_ (0), + argument_flag_ (0), + service_context_ (0) +{ +} ACE_INLINE void -TAO_Pluggable_Reply_Params::service_context_notowned (IOP::ServiceContextList *svc) +TAO_Pluggable_Reply_Params_Base::service_context_notowned ( + IOP::ServiceContextList *svc + ) { this->service_context_ = svc; } ACE_INLINE IOP::ServiceContextList & -TAO_Pluggable_Reply_Params::service_context_notowned (void) +TAO_Pluggable_Reply_Params_Base::service_context_notowned (void) { return *this->service_context_; } |