| 17 | namespace Protobuf |
| 18 | { |
| 19 | bool OutputCallback::encode(pb_ostream_t* stream, const pb_field_t* field) |
| 20 | { |
| 21 | if(!pb_encode_tag_for_field(stream, field)) { |
| 22 | return false; |
| 23 | } |
| 24 | |
| 25 | return pb_encode_string(stream, data, length); |
| 26 | } |
| 27 | |
| 28 | bool InputCallback::decode(pb_istream_t* stream, const pb_field_t*) |
| 29 | { |