// $Id$ /** * @file ICEventSource.idl * @author Will Otte * * Tests implied IDL of event sources. */ #include 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 (); }; */ };