summaryrefslogtreecommitdiff
path: root/trunk/TAO/tests/Bug_1269_Regression/Test.idl
diff options
context:
space:
mode:
Diffstat (limited to 'trunk/TAO/tests/Bug_1269_Regression/Test.idl')
-rw-r--r--trunk/TAO/tests/Bug_1269_Regression/Test.idl28
1 files changed, 28 insertions, 0 deletions
diff --git a/trunk/TAO/tests/Bug_1269_Regression/Test.idl b/trunk/TAO/tests/Bug_1269_Regression/Test.idl
new file mode 100644
index 00000000000..fe3f7a57c4c
--- /dev/null
+++ b/trunk/TAO/tests/Bug_1269_Regression/Test.idl
@@ -0,0 +1,28 @@
+/**
+ * @file Test.idl
+ *
+ * $Id$
+ *
+ * @author Carlos O'Ryan <coryan@atdesk.com>
+ *
+ */
+#ifndef Test__idl_
+#define Test__idl_
+
+module Test
+{
+ typedef sequence<octet> Payload;
+ interface Echo
+ {
+ void echo_payload(in Payload data);
+ };
+
+ interface Echo_Caller
+ {
+ void start_task(in Echo client);
+
+ oneway void shutdown();
+ };
+};
+
+#endif /* Test__idl_ */