summaryrefslogtreecommitdiff
path: root/TAO/tests/Bug_2595_Regression/Test.idl
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/tests/Bug_2595_Regression/Test.idl')
-rw-r--r--TAO/tests/Bug_2595_Regression/Test.idl38
1 files changed, 38 insertions, 0 deletions
diff --git a/TAO/tests/Bug_2595_Regression/Test.idl b/TAO/tests/Bug_2595_Regression/Test.idl
new file mode 100644
index 00000000000..0f79743ef52
--- /dev/null
+++ b/TAO/tests/Bug_2595_Regression/Test.idl
@@ -0,0 +1,38 @@
+// -*- IDL -*-
+
+//=============================================================================
+/**
+ * @file Test.idl
+ *
+ * $Id$
+ *
+ */
+//=============================================================================
+
+
+module Test
+{
+ struct Fls
+ {
+ long l_mem;
+ double d_mem;
+ };
+
+ struct Vls
+ {
+ double d_mem;
+ string s_mem;
+ };
+
+ /// A very simple interface
+ interface Hello
+ {
+ void op(out Fls fstruct, out Vls vstruct);
+
+ /// A method to shutdown the ORB
+ /**
+ * This method is used to simplify the test shutdown process
+ */
+ oneway void shutdown ();
+ };
+};