| 25 | namespace tin::data |
| 26 | { |
| 27 | BufferedByteStream::BufferedByteStream(ByteBuffer buffer) : |
| 28 | m_byteBuffer(buffer) |
| 29 | { |
| 30 | |
| 31 | } |
| 32 | |
| 33 | void BufferedByteStream::ReadBytes(void* dest, size_t length) |
| 34 | { |
nothing calls this directly
no outgoing calls
no test coverage detected