summaryrefslogtreecommitdiff
path: root/ACE/TAO/CIAO/ciao/Containers/CIAO_Servant_Activator.idl
diff options
context:
space:
mode:
Diffstat (limited to 'ACE/TAO/CIAO/ciao/Containers/CIAO_Servant_Activator.idl')
-rw-r--r--ACE/TAO/CIAO/ciao/Containers/CIAO_Servant_Activator.idl24
1 files changed, 24 insertions, 0 deletions
diff --git a/ACE/TAO/CIAO/ciao/Containers/CIAO_Servant_Activator.idl b/ACE/TAO/CIAO/ciao/Containers/CIAO_Servant_Activator.idl
new file mode 100644
index 00000000000..18aa906e0e2
--- /dev/null
+++ b/ACE/TAO/CIAO/ciao/Containers/CIAO_Servant_Activator.idl
@@ -0,0 +1,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