summaryrefslogtreecommitdiff
path: root/TAO/tests/Big_Reply/Test.idl
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/tests/Big_Reply/Test.idl')
-rw-r--r--TAO/tests/Big_Reply/Test.idl18
1 files changed, 18 insertions, 0 deletions
diff --git a/TAO/tests/Big_Reply/Test.idl b/TAO/tests/Big_Reply/Test.idl
new file mode 100644
index 00000000000..442d6a746be
--- /dev/null
+++ b/TAO/tests/Big_Reply/Test.idl
@@ -0,0 +1,18 @@
+//$Id$
+module Test
+{
+
+ typedef sequence<octet> Octet_Seq;
+
+ interface Big_Reply
+ {
+ /// Receive a big reply
+ Octet_Seq get_big_reply ();
+
+ /// Ping message
+ void ping ();
+
+ /// Shudown the remote ORB
+ oneway void shutdown ();
+ };
+};