summaryrefslogtreecommitdiff
path: root/TAO/CIAO/examples/Hello/Hello_Base/Hello_Base.idl
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/CIAO/examples/Hello/Hello_Base/Hello_Base.idl')
-rw-r--r--TAO/CIAO/examples/Hello/Hello_Base/Hello_Base.idl26
1 files changed, 26 insertions, 0 deletions
diff --git a/TAO/CIAO/examples/Hello/Hello_Base/Hello_Base.idl b/TAO/CIAO/examples/Hello/Hello_Base/Hello_Base.idl
new file mode 100644
index 00000000000..d82a23b6c8d
--- /dev/null
+++ b/TAO/CIAO/examples/Hello/Hello_Base/Hello_Base.idl
@@ -0,0 +1,26 @@
+//$Id$:
+/**
+ * @file Hello_Base.idl
+ * Definition of common interfaces used by the Hello example
+ *
+ * @auther Tao Lu <lu@dre.vanderbilt.edu>
+ */
+
+#ifndef HELLO_IDL
+#define HELLO_IDL
+
+#include <Components.idl>
+
+module Hello
+{
+ interface message
+ {
+ string get_message ();
+ };
+
+ eventtype timeout
+ {
+ };
+};
+
+#endif /* HELLO_IDL */