| 3 | namespace Abyss::Streams { |
| 4 | |
| 5 | StreamReader::StreamReader(FileSystem::InputStream &inputStream) : _inputStream(inputStream) {} |
| 6 | |
| 7 | uint8_t StreamReader::readByte() const { return static_cast<uint8_t>(_inputStream.get()); } |
| 8 |
nothing calls this directly
no outgoing calls
no test coverage detected