summaryrefslogtreecommitdiff
path: root/modules/CIAO/ccm/CCM_StandardConfigurator.idl
diff options
context:
space:
mode:
Diffstat (limited to 'modules/CIAO/ccm/CCM_StandardConfigurator.idl')
-rw-r--r--modules/CIAO/ccm/CCM_StandardConfigurator.idl28
1 files changed, 28 insertions, 0 deletions
diff --git a/modules/CIAO/ccm/CCM_StandardConfigurator.idl b/modules/CIAO/ccm/CCM_StandardConfigurator.idl
new file mode 100644
index 00000000000..0013d3d5b31
--- /dev/null
+++ b/modules/CIAO/ccm/CCM_StandardConfigurator.idl
@@ -0,0 +1,28 @@
+// $Id$
+/// Compliant with OMG 06-04-01 Section 6.10.1.2
+
+#if !defined (CCM_STANDARDCONFIGURATOR_IDL)
+#define CCM_STANDARDCONFIGURATOR_IDL
+
+#include "ccm/CCM_Configurator.idl"
+#include "ccm/CCM_Navigation.idl"
+
+module Components
+{
+ typeprefix Components "omg.org";
+
+ valuetype ConfigValue
+ {
+ public FeatureName name;
+ public any value;
+ };
+
+ typedef sequence<ConfigValue> ConfigValues;
+
+ interface StandardConfigurator : Configurator
+ {
+ void set_configuration (in ConfigValues descr);
+ };
+
+};
+#endif /* CCM_STANDARDCONFIGURATOR_IDL */