On Sun, Jul 7, 2013 at 4:15 PM, <[email protected]> wrote: > I currently have multiple classes in my project some of these classes use > boost serialization and these classes are used at various places in the > project. I now need to serialize some of these classes and send them across > the network as string. For this I am using google protocol buffer. My > question is suppose i have a header file called Myheader.h and I also > create Myheader.pb.h . Is it possible to cast Myheader.h into > Myheader.pb.h and vice versa ?
No, you can't. If you are already using boost serialization, why do you still need protobuf? You can serialize objects into strings directly using boost serialization. > IF so what is the easiest and the fastest way. > > -- > 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 [email protected]. > To post to this group, send email to [email protected]. > Visit this group at http://groups.google.com/group/protobuf. > For more options, visit https://groups.google.com/groups/opt_out. > > > -- 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 [email protected]. To post to this group, send email to [email protected]. Visit this group at http://groups.google.com/group/protobuf. For more options, visit https://groups.google.com/groups/opt_out.
