summaryrefslogtreecommitdiff
path: root/TAO/CIAO/docs/tutorial/Hello/hello.idl
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/CIAO/docs/tutorial/Hello/hello.idl')
-rw-r--r--TAO/CIAO/docs/tutorial/Hello/hello.idl19
1 files changed, 19 insertions, 0 deletions
diff --git a/TAO/CIAO/docs/tutorial/Hello/hello.idl b/TAO/CIAO/docs/tutorial/Hello/hello.idl
new file mode 100644
index 00000000000..fe1a29a0370
--- /dev/null
+++ b/TAO/CIAO/docs/tutorial/Hello/hello.idl
@@ -0,0 +1,19 @@
+// $Id$
+
+// A plain vanilla component definition.
+
+#include <Components.idl>
+
+interface Hello
+{
+ string sayhello (in string username);
+};
+
+component HelloWorld supports Hello
+{
+};
+
+
+home HelloHome manages HelloWorld
+{
+};