blob: 6e89221f1cc134ce266dd496237b82923354daa5 [file] [log] [blame]
Mark Slee9e288d42007-01-24 23:42:12 +00001struct Hello {
2 1: i32 simple,
3 2: map<i32,i32> complex,
4 3: map<i32, map<i32,i32>> complexer,
5}
6
7exception Goodbye {
8 1: i32 simple,
9 2: map<i32,i32> complex,
10 3: map<i32, map<i32,i32>> complexer,
11}
12
13service 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}