summaryrefslogtreecommitdiff
path: root/CIAO/tests/IDL3/ImpliedIDL/Components/EventSink/ICEventSink.idl
diff options
context:
space:
mode:
Diffstat (limited to 'CIAO/tests/IDL3/ImpliedIDL/Components/EventSink/ICEventSink.idl')
-rw-r--r--CIAO/tests/IDL3/ImpliedIDL/Components/EventSink/ICEventSink.idl29
1 files changed, 0 insertions, 29 deletions
diff --git a/CIAO/tests/IDL3/ImpliedIDL/Components/EventSink/ICEventSink.idl b/CIAO/tests/IDL3/ImpliedIDL/Components/EventSink/ICEventSink.idl
deleted file mode 100644
index 264d91af28d..00000000000
--- a/CIAO/tests/IDL3/ImpliedIDL/Components/EventSink/ICEventSink.idl
+++ /dev/null
@@ -1,29 +0,0 @@
-/**
- * @file ICEventSink.idl
- * @author Will Otte <wotte@dre.vanderbilt.edu>
- *
- * Tests implied idl features of event sinks
- */
-
-#include <Components.idl>
-
-module ImpliedEventSink
-{
-#if !defined (CCM_NOEVENT)
- eventtype foo_event
- {
- };
-#endif
- component Foo
- {
-#if !defined (CCM_NOEVENT)
- consumes foo_event c_foo;
-#endif
- };
- /*
- interface test
- {
- ImpliedEventSink::FooEventConsumers::foo_eventConsumer test_a ();
- };
- */
-};