summaryrefslogtreecommitdiff
path: root/TAO/CIAO/examples/Hello/Receiver/Receiver.cidl
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/CIAO/examples/Hello/Receiver/Receiver.cidl')
-rw-r--r--TAO/CIAO/examples/Hello/Receiver/Receiver.cidl22
1 files changed, 22 insertions, 0 deletions
diff --git a/TAO/CIAO/examples/Hello/Receiver/Receiver.cidl b/TAO/CIAO/examples/Hello/Receiver/Receiver.cidl
new file mode 100644
index 00000000000..aab2d099ff7
--- /dev/null
+++ b/TAO/CIAO/examples/Hello/Receiver/Receiver.cidl
@@ -0,0 +1,22 @@
+//$Id$:
+/**
+ * @file Reciever.cild
+ *
+ * @author Tao Lu <lu@dre.vanderbilt.edu>
+ */
+
+#ifndef SENDER_CIDL
+#define SENDER_CIDL
+
+#include "Receiver.idl"
+
+composition session Receiver_Impl
+{
+ home executor ReceiverHome_Exec
+ {
+ implements Hello::ReceiverHome;
+ manages Receiver_Exec;
+ };
+};
+
+#endif /* SENDER_CIDL */