blob: bff1e9704c0b3a02ca697e4514200bda7aadb73b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
// -*- C++ -*-
//$Id$
ACE_INLINE void
TAO_Pluggable_Reply_Params::service_context_notowned (IOP::ServiceContextList *svc)
{
this->service_context_ = svc;
}
ACE_INLINE IOP::ServiceContextList &
TAO_Pluggable_Reply_Params::service_context_notowned (void)
{
return *this->service_context_;
}
|