summaryrefslogtreecommitdiff
path: root/modules/CIAO/ccm/CCM_StandardConfigurator.idl
blob: 0013d3d5b317afec46cd04c5be0328ecac84c77b (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
// $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 */