summaryrefslogtreecommitdiff
path: root/modules/CIAO/ciao/CCM_Configurator.idl
diff options
context:
space:
mode:
Diffstat (limited to 'modules/CIAO/ciao/CCM_Configurator.idl')
-rw-r--r--modules/CIAO/ciao/CCM_Configurator.idl31
1 files changed, 31 insertions, 0 deletions
diff --git a/modules/CIAO/ciao/CCM_Configurator.idl b/modules/CIAO/ciao/CCM_Configurator.idl
new file mode 100644
index 00000000000..0d48f8e65cb
--- /dev/null
+++ b/modules/CIAO/ciao/CCM_Configurator.idl
@@ -0,0 +1,31 @@
+// $Id$
+
+/**
+ * @@ Compile this file with:
+ *
+ * tao_idl -Gv -I ../.. -I ../../orbsvcs/orbsvcs \
+ * -Wb,export_macro=CIAO_Export \
+ * -Wb,export_include=CIAO_export.h \
+ * -Wb,pre_include="ace/pre.h" \
+ * -Wb,post_include="ace/post.h" \
+ * CCM_Component.idl
+ */
+
+#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 */