summaryrefslogtreecommitdiff
path: root/ACE/TAO/tests/Bug_1270_Regression/Test.idl
diff options
context:
space:
mode:
Diffstat (limited to 'ACE/TAO/tests/Bug_1270_Regression/Test.idl')
-rw-r--r--ACE/TAO/tests/Bug_1270_Regression/Test.idl28
1 files changed, 28 insertions, 0 deletions
diff --git a/ACE/TAO/tests/Bug_1270_Regression/Test.idl b/ACE/TAO/tests/Bug_1270_Regression/Test.idl
new file mode 100644
index 00000000000..7e21df19733
--- /dev/null
+++ b/ACE/TAO/tests/Bug_1270_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
+ {
+ oneway void echo_payload(in Payload data);
+ };
+
+ interface Echo_Caller
+ {
+ void start_task(in Echo client);
+
+ oneway void shutdown();
+ };
+};
+
+#endif /* Test__idl_ */