[protobuf] Re: How do you use extensions across multiple .proto files?

2012-01-06 Thread Chris Dew
Thanks for that. Was it in the docs? I expect I was being blind. All the best, Chris. On Jan 5, 7:13 pm, Benjamin Wright wrote: > the correct syntax for the extending file is... > > import "extended_file.proto"; > > extend extended_package.<'.' separated qualified path to type (if > nested wi

[protobuf] Re: How do you use extensions across multiple .proto files?

2012-01-05 Thread Benjamin Wright
the correct syntax for the extending file is... import "extended_file.proto"; extend extended_package.<'.' separated qualified path to type (if nested within one or more messages/groups)>ExtendedMessage { optional int32 field = 100; } On Jan 5, 5:57 am, Chris Dew wrote: > How do you use ext