/** * @file Test.idl * * $Id$ * * @author Carlos O'Ryan * */ #ifndef Test__idl_ #define Test__idl_ module Test { typedef sequence Payload; interface Echo { void echo_payload(in Payload data); }; interface Echo_Caller { void start_task(in Echo client); oneway void shutdown(); }; }; #endif /* Test__idl_ */