summaryrefslogtreecommitdiff
path: root/CIAO/ccm/CCM_StandardConfigurator.idl
blob: b25e3156677e5a0e0f489844db8ba835f9247a95 (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
25
26
27
28
29
/// 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;

#if !defined (CCM_LW)
  interface StandardConfigurator : Configurator
  {
    void set_configuration (in ConfigValues descr);
  };
#endif

};
#endif /* CCM_STANDARDCONFIGURATOR_IDL */