| 11 | }; |
| 12 | |
| 13 | class InputStream final : public std::istream { |
| 14 | std::unique_ptr<std::streambuf> _streamBuff; |
| 15 | |
| 16 | public: |
| 17 | explicit InputStream(std::unique_ptr<std::streambuf> streamBuff); |
| 18 | InputStream(InputStream &&other) noexcept; |
| 19 | std::streamsize size(); |
| 20 | }; |
| 21 | |
| 22 | } // namespace Abyss::FileSystem |