[protobuf] add Common Lisp protobuf implementation

2010-08-06 Thread Robert Brown
Please add an entry to the ThirdPartyAddOns wiki page in the programming languages section for the following protocol buffer implementation: Common Lisp: http://github.com/brown/protobuf Thanks very much. bob -- You received this message because you are subscribed to the Google Groups "Pro

Re: [protobuf] How to use SetString reflection method

2010-08-06 Thread Jason Hsueh
The setters need a (non-const) pointer to the message object. It appears fractal_handle is a reference since the getter, which takes a const reference to a message, compiles. On Fri, Aug 6, 2010 at 4:42 AM, mark.t.macdon...@googlemail.com < mark.t.macdon...@googlemail.com> wrote: > Can you please

[protobuf] How to use SetString reflection method

2010-08-06 Thread mark.t.macdon...@googlemail.com
Can you please give me an example of using the reflection SetString method? //this compiles reflection->GetString(fractal_handle,fractal.GetDescriptor()- >FindFieldByName("name")); //this doesn't reflection->SetString(fractal_handle,fractal.GetDescriptor()- >FindFieldByName("name"),"Mandlebrot");