Merge pull request #2301 from sonndinh/remove-dup-reactor-functions
[ACE_TAO.git] / TAO / tests / Bug_1254_Regression / test.idl
blob3971554b64bd0e41f2bd351fe887e7b7721361b0
1 // -*- IDL -*-
3 //=============================================================================
4 /**
5 * @file test.idl
7 * "test" IDL interface for the CORBA_MARSHALL exception with sequence<octed>
8 * as inout parameters (bug#1254).
10 * @author Kees van Marle <kvmarle@ermedy.nl>
12 //=============================================================================
15 typedef sequence<octet> BlobType1;
16 typedef sequence<octet> BlobType2;
18 interface BlobServer
20 void test(inout BlobType1 blob1, inout BlobType2 blob2);
22 /// A method to shutdown the ORB
23 /**
24 * This method is used to simplify the test shutdown process
26 oneway void shutdown ();