1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
// // $Id$ // typedef sequence<long> LongSeq; struct Structure { short i; sequence<long> seq; }; interface Simple_Server { long test_method (in long x, in Structure the_in_structure, out Structure the_out_structure, inout string name); oneway void shutdown (); };