| 6 | namespace Abyss::FileSystem { |
| 7 | |
| 8 | class SizeableStreambuf : public std::basic_streambuf<char> { |
| 9 | public: |
| 10 | [[nodiscard]] virtual auto size() const -> std::streamsize = 0; |
| 11 | }; |
| 12 | |
| 13 | class InputStream final : public std::istream { |
| 14 | std::unique_ptr<std::streambuf> _streamBuff; |
nothing calls this directly
no outgoing calls
no test coverage detected