// // test.idl,v 1.1 1999/12/21 23:51:55 irfan Exp // interface test { void method (in unsigned long request_number, out unsigned long reply_number); // the next method was added to demonstrate that on the client side // ALL methods have to be implemented, regardless if one whats to use // them or not! #ifdef ADDITIONAL void additional_method (in unsigned long request_number, out unsigned long reply_number); #endif oneway void shutdown (); };