summaryrefslogtreecommitdiff
path: root/trunk/TAO/tests/Bug_1495_Regression/test.idl
diff options
context:
space:
mode:
Diffstat (limited to 'trunk/TAO/tests/Bug_1495_Regression/test.idl')
-rw-r--r--trunk/TAO/tests/Bug_1495_Regression/test.idl30
1 files changed, 30 insertions, 0 deletions
diff --git a/trunk/TAO/tests/Bug_1495_Regression/test.idl b/trunk/TAO/tests/Bug_1495_Regression/test.idl
new file mode 100644
index 00000000000..60a9b2e526b
--- /dev/null
+++ b/trunk/TAO/tests/Bug_1495_Regression/test.idl
@@ -0,0 +1,30 @@
+// $Id$
+
+// ============================================================================
+//
+// = LIBRARY
+// TAO/tests/Bug_1495_Regression
+//
+// = FILENAME
+// test.idl
+//
+// = DESCRIPTION
+// Simple IDL file to test regression of bug 1495
+//
+// = AUTHORS
+// Will Otte <wotte@dre.vanderbilt.edu>
+//
+// ============================================================================
+
+module Bug1495_Regression
+{
+ /// A test idl to check Bug 1495
+ interface Bug1495
+ {
+ /// get the thread id of the thread that services this request.
+ void get_thread_id (out long thread_id);
+
+ /// Shutdown the ORB.
+ oneway void shutdown ();
+ };
+};