summaryrefslogtreecommitdiff
path: root/trunk/TAO/tests/Bug_1476_Test/Hello.idl
diff options
context:
space:
mode:
Diffstat (limited to 'trunk/TAO/tests/Bug_1476_Test/Hello.idl')
-rw-r--r--trunk/TAO/tests/Bug_1476_Test/Hello.idl15
1 files changed, 15 insertions, 0 deletions
diff --git a/trunk/TAO/tests/Bug_1476_Test/Hello.idl b/trunk/TAO/tests/Bug_1476_Test/Hello.idl
new file mode 100644
index 00000000000..34637c5870e
--- /dev/null
+++ b/trunk/TAO/tests/Bug_1476_Test/Hello.idl
@@ -0,0 +1,15 @@
+//
+// $Id$
+//
+
+/// Put the interfaces in a module, to avoid global namespace pollution
+module Test
+{
+ /// A very simple interface
+ interface Hello
+ {
+ /// Return a simple string
+ oneway void get_string ();
+
+ };
+};