| 5 | #include <timer.h> |
| 6 | |
| 7 | int64_t Stream::Read(void* buffer, size_t len){ |
| 8 | assert(!"Stream::Read called from base class"); |
| 9 | |
| 10 | return -1; // We should not return but get the compiler to shut up |
| 11 | } |
| 12 | |
| 13 | int64_t Stream::Write(void* buffer, size_t len){ |
| 14 | assert(!"Stream::Write called from base class"); |
nothing calls this directly
no test coverage detected