Merge pull request #2309 from mitza-oci/warnings
[ACE_TAO.git] / TAO / tests / Bug_1020_Basic_Regression / Test.idl
blob624ff68c53ef1fcb4070ee5b90c7602c1a3da071
1 /**
2 * @file Test.idl
4 * @author Carlos O'Ryan <coryan@atdesk.com>
5 */
6 #ifndef BUG_1020_TEST_IDL
7 #define BUG_1020_TEST_IDL
9 module Test
11 typedef sequence<octet> Payload;
13 interface Echo
15 void echo_payload (inout Payload data);
18 interface Echo_Caller
20 void start_task(in Echo client);
22 oneway void shutdown();
26 #endif /* BUG_1020_TEST_IDL */