mirror of
https://github.com/protobuf-c/protobuf-c.git
synced 2024-12-27 05:11:04 +08:00
14 lines
186 B
Protocol Buffer
14 lines
186 B
Protocol Buffer
package foo;
|
|
|
|
option optimize_for = CODE_SIZE;
|
|
|
|
enum TestEnumLite {
|
|
LITE = 0;
|
|
LITE1 = 1;
|
|
}
|
|
|
|
message TestMessLite {
|
|
required int32 field1 = 1;
|
|
required TestEnumLite field2 = 2;
|
|
}
|