]> Gitweb @ Texas Instruments - Open Source Git Repositories - git.TI.com/gitweb - apps/tidep0084.git/blob - example/iot-gateway/node_modules/protocol-buffers/bench/bench.proto
Initial commit
[apps/tidep0084.git] / example / iot-gateway / node_modules / protocol-buffers / bench / bench.proto
1 message Bar {
2   message Foo {
3     optional uint32 baz = 1;
4   }
6   optional Foo tmp = 1;
7 }
9 enum FOO {
10   LOL=1;
11   ABE=3;
12 }
14 message Yo {
15   repeated FOO lol = 1;
16 }
18 message Lol {
19   optional string lol = 1;
20   required Bar b = 2;
21 }
23 message Test {
24   optional Lol meh = 6;
25   optional uint32 hello = 3;
26   optional string foo = 1;
27   optional bytes payload = 7;
28 }