! @brief Write a buffer of bytes to a blob. @param [in] buf A memory buffer of bytes to write to the blob. @param [in] start The index of the first byte in blob to write to. @param [in] count The number of bytes to write. @details The memory buffer @a buf must store at least @a count bytes. The data is stored in a binary section of the ImageFile with checksum protection, so undetected corruptio
| 289 | @see BlobNode::byteCount, BlobNode::read |
| 290 | */ |
| 291 | void BlobNode::write( uint8_t *buf, int64_t start, size_t count ) |
| 292 | { |
| 293 | impl_->write( buf, start, count ); |
| 294 | } |
| 295 | |
| 296 | /*! |
| 297 | @brief Diagnostic function to print internal state of object to output stream in an indented format. |
no outgoing calls
no test coverage detected