! @brief create a binary reader @param[in] adapter input adapter to read from */
| 4489 | @param[in] adapter input adapter to read from |
| 4490 | */ |
| 4491 | explicit binary_reader(input_adapter_t adapter) : ia(std::move(adapter)) |
| 4492 | { |
| 4493 | assert(ia); |
| 4494 | } |
| 4495 | |
| 4496 | /*! |
| 4497 | @brief create a JSON value from CBOR input |
nothing calls this directly
no outgoing calls
no test coverage detected