blob: 0d6aeef9bcc029813ec21a68b19bd19cfa44fce4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
// $Id$ -*- C++ -*-
ACE_INLINE CORBA::Object_ptr
CIAO::Session_Container::get_objref (PortableServer::Servant p
ACE_ENV_ARG_DECL)
ACE_THROW_SPEC ((CORBA::SystemException))
{
return this->the_POA ()->servant_to_reference (p
ACE_ENV_ARG_PARAMETER);
}
ACE_INLINE CIAO::Servant_Activator *
CIAO::Session_Container::ports_servant_activator (void) const
{
return this->sa_;
}
|