summaryrefslogtreecommitdiff
path: root/CIAO/tests/IDL3/ImpliedIDL/Components/EventSource/ICEventSource.idl
blob: 08baec86e3fcbce4c13949bd45babe42e9f7cca3 (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
// $Id$
/**
 * @file ICEventSource.idl
 * @author Will Otte <wotte@dre.vanderbilt.edu>
 *
 * Tests implied IDL of event sources.
 */

#include <Components.idl>

module ImpliedSources
{
  eventtype foo_event
    {
    };
  
  eventtype bar_event
    {
    };
  
  component Foo
    {
      publishes foo_event foo;
    };
  
  component Bar
    {
      emits bar_event bar;
    };
  /*  
  interface test
    {
      ImpliedSources::FooEventConsumers::foo_eventConsumer test_op ();
      ImpliedSources::BarEventConsumers::bar_eventConsumer test_op_1 ();
    };
  */
};