| 11 | } |
| 12 | |
| 13 | int64_t Stream::Write(void* buffer, size_t len){ |
| 14 | assert(!"Stream::Write called from base class"); |
| 15 | |
| 16 | return -1; // We should not return but get the compiler to shut up |
| 17 | } |
| 18 | |
| 19 | int64_t Stream::Peek(void* buffer, size_t len){ |
| 20 | assert(!"Stream::Peek called from base class"); |
nothing calls this directly
no test coverage detected