summaryrefslogtreecommitdiff
path: root/CIAO/tests/IDL3/ImpliedIDL/Components/EventSource/ICEventSource.idl
diff options
context:
space:
mode:
Diffstat (limited to 'CIAO/tests/IDL3/ImpliedIDL/Components/EventSource/ICEventSource.idl')
-rw-r--r--CIAO/tests/IDL3/ImpliedIDL/Components/EventSource/ICEventSource.idl38
1 files changed, 0 insertions, 38 deletions
diff --git a/CIAO/tests/IDL3/ImpliedIDL/Components/EventSource/ICEventSource.idl b/CIAO/tests/IDL3/ImpliedIDL/Components/EventSource/ICEventSource.idl
deleted file mode 100644
index 08baec86e3f..00000000000
--- a/CIAO/tests/IDL3/ImpliedIDL/Components/EventSource/ICEventSource.idl
+++ /dev/null
@@ -1,38 +0,0 @@
-// $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 ();
- };
- */
-};
-