1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
// // $Id$ // module Test { /// An interface to communicate and shutdown a process interface Ping_Service { /// Just a void function contact the server void ping (); /// Shutdown the server oneway void shutdown (); }; };