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

#include <Components.idl>

module PublishesEmits
{
  eventtype foo_event
    {
    };
  
  component Foo
    {
      publishes foo_event foo;
    };
  
  component Bar
    {
      emits foo_event foo;
    };
};