mirror of
https://github.com/google/pebble.git
synced 2025-03-19 18:41:21 +00:00
13 lines
171 B
Protocol Buffer
13 lines
171 B
Protocol Buffer
|
/* Test CPP descriptor generation */
|
||
|
|
||
|
syntax = "proto2";
|
||
|
|
||
|
import "nanopb.proto";
|
||
|
|
||
|
message MyEmptyMessage {
|
||
|
}
|
||
|
|
||
|
message MyNonEmptyMessage {
|
||
|
optional uint32 field = 1;
|
||
|
}
|