proto3_options.proto 335 B

123456789101112131415161718
  1. syntax = "proto3";
  2. import "nanopb.proto";
  3. message SubMsg
  4. {
  5. int32 field = 1;
  6. }
  7. message Message1
  8. {
  9. int32 proto3_default = 1;
  10. int32 proto3_off = 2 [(nanopb).proto3 = false];
  11. int32 proto3_on = 3 [(nanopb).proto3 = true];
  12. SubMsg normal_submsg = 4;
  13. SubMsg sng_submsg = 5 [(nanopb).proto3_singular_msgs = true];
  14. }