summaryrefslogtreecommitdiff
path: root/modules/CIAO/ccm/CCM_Configurator.idl
diff options
context:
space:
mode:
Diffstat (limited to 'modules/CIAO/ccm/CCM_Configurator.idl')
-rw-r--r--modules/CIAO/ccm/CCM_Configurator.idl21
1 files changed, 21 insertions, 0 deletions
diff --git a/modules/CIAO/ccm/CCM_Configurator.idl b/modules/CIAO/ccm/CCM_Configurator.idl
new file mode 100644
index 00000000000..6a95548ea1e
--- /dev/null
+++ b/modules/CIAO/ccm/CCM_Configurator.idl
@@ -0,0 +1,21 @@
+// $Id$
+/// Compliant with OMG 06-04-01 Section 6.10.1.1
+
+#if !defined (CCM_CONFIGURATOR_IDL)
+#define CCM_CONFIGURATOR_IDL
+
+module Components
+{
+ typeprefix Components "omg.org";
+
+ exception WrongComponentType {};
+
+ interface CCMObject;
+
+ interface Configurator
+ {
+ void configure (in CCMObject comp)
+ raises (WrongComponentType);
+ };
+};
+#endif /* CCM_CONFIGURATOR_IDL */