| 42 | void writeNumber(double value) { append(value); } |
| 43 | void writeString(const char* value, UInt32 size) { append(value,size); } |
| 44 | void writeBoolean(bool value) { append( value ? "true" : "false"); } |
| 45 | void writeNull() { packet.write("null",4); } |
| 46 | UInt64 writeDate(const Date& date) { std::string buffer; append(date.toString(Date::SORTABLE_FORMAT, buffer)); return 0; } |
| 47 | UInt64 writeBytes(const UInt8* data, UInt32 size) { append(data, size); return 0; } |
nothing calls this directly
no outgoing calls
no test coverage detected