summaryrefslogtreecommitdiff
path: root/modules/CIAO/ciao/Containers/CIAO_Servant_Activator.idl
blob: 18aa906e0e289b5699d0847ff1c644ffc91c046d (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
/** 
 * @file CIAO_Servant_Activator.idl
 * @author William R. Otte <wotte@dre.vanderbilt.edu>
 * $Id$
 * Local interface extensions for the CIAO servant activator.
 */

#ifndef CIAO_SERVANT_ACTIVATOR_IDL
#define CIAO_SERVANT_ACTIVATOR_IDL

#include "tao/PortableServer/ServantActivator.pidl"
#include "ciao/Servants/CIAO_Port_Activator.idl"

module CIAO
{
  local interface Servant_Activator : PortableServer::ServantActivator
  {
    boolean update_port_activator (in PortableServer::ObjectId oid);
    
    boolean register_port_activator (in Port_Activator pa);
  };
};

#endif