[protobuf] Re: XML to Protocol Buffers converter

2015-07-16 Thread Aravinth Veeramuthu
How to convert the XML data into the Protocol buffer format in c++??? -- You received this message because you are subscribed to the Google Groups Protocol Buffers group. To unsubscribe from this group and stop receiving emails from it, send an email to protobuf+unsubscr...@googlegroups.com.

Re: [protobuf] XML to Protocol Buffers converter

2015-07-16 Thread Michael Haberler
Am 16.07.2015 um 11:52 schrieb Aravinth Veeramuthu aravinth.veeramu...@vembu.com: How to convert the XML data into the Protocol buffer format in c++??? https://github.com/search?utf8=%E2%9C%93q=xml+protobufref=simplesearch -- You received this message because you are subscribed to

[protobuf] Missing has method for optional fields in proto3 ?

2015-07-16 Thread Wu XIANG
Hi, Is it true that has methods for optional fields in proto3 are removed from generated message ? If so, how can I decide if this field has been set or not ? syntax =proto3; message Foo{ int32 bar = 1; } // generated Foo.java class Foo ... { int getBar(); // the following