Goby3 3.2.3
2025.05.13
Loading...
Searching...
No Matches
test2.proto
Go to the documentation of this file.
1syntax = "proto2";
2
3package goby.test.middleware.protobuf;
4
5message TestHDF5Message
6{
7 repeated double a = 1;
8 repeated B b = 2;
9}
10
11message B
12{
13 repeated double c = 2;
14 repeated double d = 3;
15 repeated int32 e = 4;
16 repeated F f = 5;
17}
18
19message F
20{
21 repeated double g = 1;
22 optional int32 h = 2;
23}