| 4 | #include "BufferedStream.h" |
| 5 | |
| 6 | class BufferedInputStream : public BufferedStream { |
| 7 | public: |
| 8 | BufferedInputStream(); |
| 9 | ~BufferedInputStream(); |
| 10 | void provide(int n) override; |
| 11 | void consume(bool blocking) override; |
| 12 | int remaining() override; |
| 13 | int ready() override; |
| 14 | int get_contiguous_blocks() override; |
| 15 | }; |
| 16 | |
| 17 | #endif |
nothing calls this directly
no outgoing calls
no test coverage detected