summaryrefslogtreecommitdiff
path: root/TAO/tests/Big_AMI/ami_test.idl
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/tests/Big_AMI/ami_test.idl')
-rw-r--r--TAO/tests/Big_AMI/ami_test.idl29
1 files changed, 29 insertions, 0 deletions
diff --git a/TAO/tests/Big_AMI/ami_test.idl b/TAO/tests/Big_AMI/ami_test.idl
new file mode 100644
index 00000000000..990a202cda5
--- /dev/null
+++ b/TAO/tests/Big_AMI/ami_test.idl
@@ -0,0 +1,29 @@
+
+//=============================================================================
+/**
+ * @file ami_test.idl
+ *
+ * $Id$
+ *
+ * IDL description of the AMI Test interface
+ *
+ *
+ * @author Johnny Willemsen <jwillemsen@remedy.nl>
+ */
+
+module A
+ {
+ /// The message type, just used to send a lot of data on each
+ /// request
+ typedef sequence<octet> Payload;
+
+ interface AMI_Test
+ {
+ long foo (out long out_l,
+ in long in_l,
+ in string in_str,
+ in Payload the_payload);
+
+ oneway void shutdown ();
+ };
+ };