/////////////////////////////////////////////////////////////////////////// ContentWriter ///////////////////////////////////////////////////////////////////////////
| 162 | // ContentWriter |
| 163 | //////////////////////////////////////////////////////////////////////////////// |
| 164 | ContentWriter::ContentWriter(const std::shared_ptr<Writer>& rhs) |
| 165 | : writer(rhs) {} |
| 166 | |
| 167 | ContentWriter& ContentWriter::operator=(ContentWriter&& rhs) noexcept { |
| 168 | writer = std::move(rhs.writer); |
nothing calls this directly
no outgoing calls
no test coverage detected