blob: 0aa88955e5daf0853ccfe3dc08aeb7d08a66364e (
plain)
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
|
// -*- C++ -*-
//$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_Base::service_context_notowned (
IOP::ServiceContextList *svc
)
{
this->service_context_ = svc;
}
ACE_INLINE IOP::ServiceContextList &
TAO_Pluggable_Reply_Params_Base::service_context_notowned (void)
{
return *this->service_context_;
}
|