summaryrefslogtreecommitdiff
path: root/trunk/TAO/tests/Bug_1254_Regression/test.idl
diff options
context:
space:
mode:
Diffstat (limited to 'trunk/TAO/tests/Bug_1254_Regression/test.idl')
-rw-r--r--trunk/TAO/tests/Bug_1254_Regression/test.idl32
1 files changed, 32 insertions, 0 deletions
diff --git a/trunk/TAO/tests/Bug_1254_Regression/test.idl b/trunk/TAO/tests/Bug_1254_Regression/test.idl
new file mode 100644
index 00000000000..87b8160821e
--- /dev/null
+++ b/trunk/TAO/tests/Bug_1254_Regression/test.idl
@@ -0,0 +1,32 @@
+// -*- IDL -*-
+
+//=============================================================================
+/**
+ * @file test.idl
+ *
+ * $Id$
+ *
+ * "test" IDL interface for the CORBA_MARSHALL exception with sequence<octed>
+ * as inout parameters (bug#1254).
+ *
+ * @author Kees van Marle <kvmarle@ermedy.nl>
+ */
+//=============================================================================
+
+
+typedef sequence<octet> BlobType1;
+typedef sequence<octet> BlobType2;
+
+interface BlobServer
+{
+ void test(inout BlobType1 blob1, inout BlobType2 blob2);
+
+ /// A method to shutdown the ORB
+ /**
+ * This method is used to simplify the test shutdown process
+ */
+ oneway void shutdown ();
+};
+
+
+