Mark Slee | 9e288d4 | 2007-01-24 23:42:12 +0000 | [diff] [blame] | 1 | struct Hello { |
2 | 1: i32 simple, | ||||
3 | 2: map<i32,i32> complex, | ||||
4 | 3: map<i32, map<i32,i32>> complexer, | ||||
5 | } | ||||
6 | |||||
7 | exception Goodbye { | ||||
8 | 1: i32 simple, | ||||
9 | 2: map<i32,i32> complex, | ||||
10 | 3: map<i32, map<i32,i32>> complexer, | ||||
11 | } | ||||
12 | |||||
13 | service SmallService { | ||||
14 | Hello testMe(1:i32 hello, 2: Hello wonk) throws (1: Goodbye g), | ||||
15 | void testVoid() throws (1: Goodbye g), | ||||
16 | i32 testI32(1:i32 boo) | ||||
17 | } |