blob: f23aa004b0369e29e1c842ad30c9e0d444c9781e [file] [log] [blame]
David Reiss9a08dc62008-02-27 01:55:17 +00001namespace cpp test.stress
Marc Slemko3ea00332006-08-17 01:11:13 +00002
3service Service {
4
5 void echoVoid(),
Mark Sleed7173472006-10-25 19:52:10 +00006 byte echoByte(1: byte arg),
7 i32 echoI32(1: i32 arg),
8 i64 echoI64(1: i64 arg),
9 string echoString(1: string arg),
10 list<byte> echoList(1: list<byte> arg),
11 set<byte> echoSet(1: set<byte> arg),
12 map<byte, byte> echoMap(1: map<byte, byte> arg),
Marc Slemko3ea00332006-08-17 01:11:13 +000013}
14