summaryrefslogtreecommitdiff
path: root/TAO/CIAO/examples/Hello/Receiver/ReceiverEI.idl
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/CIAO/examples/Hello/Receiver/ReceiverEI.idl')
-rw-r--r--TAO/CIAO/examples/Hello/Receiver/ReceiverEI.idl25
1 files changed, 25 insertions, 0 deletions
diff --git a/TAO/CIAO/examples/Hello/Receiver/ReceiverEI.idl b/TAO/CIAO/examples/Hello/Receiver/ReceiverEI.idl
new file mode 100644
index 00000000000..9c92a309fbb
--- /dev/null
+++ b/TAO/CIAO/examples/Hello/Receiver/ReceiverEI.idl
@@ -0,0 +1,25 @@
+//$Id$:
+/**
+ * @file ReceiverEI.idl
+ *
+ * @author Tao Lu <lu@dre.vanderbilt.edu>
+ */
+
+#ifndef RECEIVEREI_IDL
+#define RECEIVERET_IDL
+
+
+#include "ReceiverE.idl"
+
+module Hello
+{
+ //Note since the Receiver only uses the message interface, there won't
+ //be any inheritance from CCM_message.
+ local interface Receiver_Exec :
+ CCM_Receiver,
+ Components::SessionComponent
+ {
+ };
+
+};
+#endif /*RECEIVEREI_IDL*/