| 502 | } |
| 503 | |
| 504 | void write(const char* s, std::streamsize count) override { |
| 505 | out_->appendStringView(std::string_view(s, count)); |
| 506 | if (listener_) { |
| 507 | listener_->onWrite(s, count); |
| 508 | } |
| 509 | } |
| 510 | |
| 511 | std::streampos tellp() const override; |
| 512 |
no test coverage detected