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