summaryrefslogtreecommitdiff
path: root/CIAO/tests/IDL3/ImpliedIDL/Components/EventSource/ICEventSource.idl
blob: 4a232ff873bccb3fb545d7e244b712567b6df321 (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
/**
 * @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 p_foo;
    };

  component Bar
    {
      emits bar_event e_bar;
    };
  /*
  interface test
    {
      ImpliedSources::FooEventConsumers::foo_eventConsumer test_op ();
      ImpliedSources::BarEventConsumers::bar_eventConsumer test_op_1 ();
    };
  */
};