Update doc revision and pdf cover.
[apps/low-level-can-service.git] / CAN-binder / libs / nanopb / tests / options / proto3_options.proto
1 syntax = "proto3";
2
3 import "nanopb.proto";
4
5 message Message1
6 {
7     int32 proto3_default = 1;
8     int32 proto3_off = 2 [(nanopb).proto3 = false];
9     int32 proto3_on = 3 [(nanopb).proto3 = true];
10 }
11