summaryrefslogtreecommitdiff
path: root/Effectors/Base/Effector_Base.idl
blob: 06273bccd0e34f68ae8a2f297589e4a5b1d827cf (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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
// $Id$

/**
 * @file Effector_Base.idl
 * @brief Interface definition of Effector_Base component.
 *
 * @author Nishanth Shankaran <nshankar@nospam.com>
 */

#ifndef EFFECTOR_BASE_IDL
#define EFFECTOR_BASE_IDL

#include "Components.idl"
#include "common/OpString.idl"

module CIAO
{
  module RACE
  {
    module Effector
    {
      interface ApplicationActuator
      {
        boolean init (in OperationalStrings opstrings);

        boolean modifyApplications
        (in OperationalStrings opstrings);
      };

      interface SystemActuator
      {
      };

      component Effector_Base
      {
        provides ApplicationActuator appActuator;

        provides SystemActuator sysActuator;

      };

      home Effector_Base_Component_Home manages Effector_Base
      {
      };
    };
  };
};


#endif /* EFFECTOR_BASE_IDL */