Only a few tests updated so far. Have to include all the rest before merging to mainline. Update issue 63 Status: Started
17 lines
425 B
Protocol Buffer
17 lines
425 B
Protocol Buffer
message SubMessage {
|
|
optional string stringvalue = 1;
|
|
repeated int32 int32value = 2;
|
|
repeated fixed32 fixed32value = 3;
|
|
repeated fixed64 fixed64value = 4;
|
|
}
|
|
|
|
message TestMessage {
|
|
optional string stringvalue = 1;
|
|
repeated int32 int32value = 2;
|
|
repeated fixed32 fixed32value = 3;
|
|
repeated fixed64 fixed64value = 4;
|
|
optional SubMessage submsg = 5;
|
|
repeated string repeatedstring = 6;
|
|
}
|
|
|