summaryrefslogtreecommitdiff
path: root/CIAO/tests/IDL3/ImpliedIDL/Components/EventSink/ICEventSink.idl
blob: 01d41895a3ad4e469cd8200cc41c2e795a780b21 (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
// $Id$
/**
 * @file ICEventSink.idl
 * @author Will Otte <wotte@dre.vanderbilt.edu>
 *
 * Tests implied idl features of event sinks
 */

#include <Components.idl>

module ImpliedEventSink
{
  eventtype foo_event
    {
    };
  
  component Foo
    {
      consumes foo_event foo;
    };
  /*
  interface test
    {
      ImpliedEventSink::FooEventConsumers::foo_eventConsumer test_a ();
    };
  */
};