Henrique Mendonça | 15d9042 | 2015-06-25 22:31:41 +1000 | [diff] [blame] | 1 | struct Simple { |
2 | 1: string value | ||||
3 | } | ||||
4 | |||||
5 | struct Complex { | ||||
6 | 1: Simple struct_field | ||||
7 | 2: list<Simple> struct_list_field | ||||
8 | 3: set<Simple> struct_set_field | ||||
9 | 4: map<string,Simple> struct_map_field | ||||
10 | 5: list<set<map<string,list<Simple>>>> struct_nested_containers_field | ||||
11 | 6: map<string, list<map<string,Simple>> > struct_nested_containers_field2 | ||||
12 | } |