mirror of
https://github.com/protobuf-c/protobuf-c.git
synced 2024-12-29 07:19:42 +08:00
14 lines
189 B
Protocol Buffer
14 lines
189 B
Protocol Buffer
|
package foo;
|
||
|
|
||
|
option optimize_for = LITE_RUNTIME;
|
||
|
|
||
|
enum TestEnumLite {
|
||
|
LITE = 0;
|
||
|
LITE1 = 1;
|
||
|
}
|
||
|
|
||
|
message TestMessLite {
|
||
|
required int32 field1 = 1;
|
||
|
required TestEnumLite field2 = 2;
|
||
|
}
|