! * \brief constructor * \param p_buffer the head pointer of the memory region. * \param buffer_size the size of the memorybuffer */
| 46 | * \param buffer_size the size of the memorybuffer |
| 47 | */ |
| 48 | BufferInStream(const void* data, size_t size) |
| 49 | : data_(reinterpret_cast<const char*>(data)), size_(size) {} |
| 50 | /*! |
| 51 | * \brief Reads raw from stream. |
| 52 | * \param ptr pointer to the data to be read |
nothing calls this directly
no outgoing calls
no test coverage detected