summaryrefslogtreecommitdiff
path: root/TAO/tests/GIOP_Fragments/PMB_With_Fragments/Test.idl
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/tests/GIOP_Fragments/PMB_With_Fragments/Test.idl')
-rw-r--r--TAO/tests/GIOP_Fragments/PMB_With_Fragments/Test.idl21
1 files changed, 21 insertions, 0 deletions
diff --git a/TAO/tests/GIOP_Fragments/PMB_With_Fragments/Test.idl b/TAO/tests/GIOP_Fragments/PMB_With_Fragments/Test.idl
new file mode 100644
index 00000000000..39951f72137
--- /dev/null
+++ b/TAO/tests/GIOP_Fragments/PMB_With_Fragments/Test.idl
@@ -0,0 +1,21 @@
+//
+// $Id$
+//
+
+module Test
+{
+ typedef sequence<octet> Payload;
+
+ interface Payload_Receiver
+ {
+ exception Invalid_Payload {
+ };
+
+ /// Send the data using a twoway operation
+ void more_data (in Payload the_payload)
+ raises (Invalid_Payload);
+
+ /// Shutdown the remote ORB
+ oneway void shutdown ();
+ };
+};