summaryrefslogtreecommitdiff
path: root/TAO/CIAO/examples/handcrafted/BasicSP_EC2/RTEventService/RTEventService.idl
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/CIAO/examples/handcrafted/BasicSP_EC2/RTEventService/RTEventService.idl')
-rw-r--r--TAO/CIAO/examples/handcrafted/BasicSP_EC2/RTEventService/RTEventService.idl32
1 files changed, 32 insertions, 0 deletions
diff --git a/TAO/CIAO/examples/handcrafted/BasicSP_EC2/RTEventService/RTEventService.idl b/TAO/CIAO/examples/handcrafted/BasicSP_EC2/RTEventService/RTEventService.idl
new file mode 100644
index 00000000000..53f578f07b6
--- /dev/null
+++ b/TAO/CIAO/examples/handcrafted/BasicSP_EC2/RTEventService/RTEventService.idl
@@ -0,0 +1,32 @@
+// $Id$
+//=============================================================================
+/**
+ * @file RTEventService.idl
+ *
+ * Definition of component and home that will provide event channels.
+ *
+ * @author George Edwards <g.edwards@vanderbilt.edu>
+ */
+//=============================================================================
+
+#include "../BasicSP.idl"
+
+#ifndef CIAO_RTEVENTSERVICE_IDL
+#define CIAO_RTEVENTSERVICE_IDL
+
+
+module BasicSP
+{
+
+ component RTEventService
+ {
+ provides RTEventChannel rt_event_channel;
+ };
+
+ home RTEventServiceHome manages RTEventService
+ {
+ };
+
+};
+
+#endif /* CIAO_RTEVENTSERVICE_IDL*/