summaryrefslogtreecommitdiff
path: root/CIAO/examples/space/Filter/Filter_Component.idl
blob: 26c8959de6f952d8fd4b485f4540622aaca13963 (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

#ifndef FILTER_COMPONENT_IDL
#define FILTER_COMPONENT_IDL

#include <Components.idl>
#include "Event_Types.idl"

module SPACE
{
  component Filter_Component
  {
    consumes Gizmo_Data recv_data;
    
    emits Gizmo_Data send_data;
  };
  
  home Filter_Component_Factory
    manages Filter_Component
  {
  };
};

#endif // FILTER_COMPONENT_IDL