| 189 | } // namespace |
| 190 | |
| 191 | KVBinaryInputStream::KVBinaryInputStream(common::IInputStream &strm) : JsonInputStreamValue(value_storage, true) { |
| 192 | is_json_value = false; // We use JsonInputStreamValue only as a convenient storage |
| 193 | // We init parent with & of value_storage, then set storage |
| 194 | value_storage = parse_binary(strm); |
| 195 | } |
| 196 | |
| 197 | bool KVBinaryInputStream::seria_v(common::BinaryArray &value) { |
| 198 | std::string str; |
nothing calls this directly
no test coverage detected