Revert "Use a variable on the stack to not have a temporary in the call"
[ACE_TAO.git] / TAO / tests / Bug_1020_Regression / Test.idl
blobed2a70a375990ba17634965f8bc6be6b92b9319d
1 /**
2 * @file Test.idl
4 * @author Carlos O'Ryan <coryan@atdesk.com>
5 */
6 #ifndef BUG_1020_REGRESSION_TEST_IDL
7 #define BUG_1020_REGRESSION_TEST_IDL
9 module Test
11 typedef sequence<octet> Payload;
12 interface Echo
14 Payload echo_payload (in Payload data);
17 interface Server
19 void start_task (in Echo client);
23 #endif /* BUG_1020_REGRESSION_TEST_IDL*/