summaryrefslogtreecommitdiff
path: root/trunk/CIAO/tests/IDL3/Components/ComplexComponent/EventSink/EventSink.idl
blob: 7d995acb61722edda454f92f46eb29c122630315 (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
// $Id$
/**
 * @file EventSink.idl
 * @author Will Otte <wotte@dre.vanderbilt.edu>
 */

#include <Components.idl>

module EventSink
{
  eventtype foo_event
    {
    };
  
  eventtype bar_event
    {
    };
  
  component Foo
    {
      consumes foo_event foo;
    };
  
  component Bar : Foo
    {
      consumes bar_event bar;
    };
  
};