| 30 | |
| 31 | template<typename Sink> |
| 32 | std::streamsize write(Sink& snk, const char* s, std::streamsize n) const |
| 33 | { |
| 34 | openConsole(attach, alloc); |
| 35 | return io::write(snk, s, n); |
| 36 | } |
| 37 | |
| 38 | template<typename Source> |
| 39 | std::streamsize read(Source& src, char* s, std::streamsize n) const |
nothing calls this directly
no test coverage detected