[protobuf] Update entry in Google protocol buffer

2014-01-21 Thread sandeep kr
I have following information in buffer file message StudentInfo { required int32 id = 1; required string name = 2; required string class = 3; optional string age = 4; } message StudentList{ repeated StudentInfo studentInfo = 1; } How to modify or delete a particular StudentInfo ? -- You receiv

[protobuf] Update entry in data buffer

2014-01-21 Thread sandeep kr
I have following classes message StudentInfo { required int32 id = 1; required string name = 2; required string class = 3; optional string age = 4; } message StudentList{ repeated StudentInfo studentInfo = 1; } and i wrote StudentList Google Protocol buffer as given below StudentList List;