MCPcopy Create free account
hub / github.com/dfranx/SHADERed / ContentWriter

Method ContentWriter

libs/cppdap/src/content_stream.cpp:164–165  ·  view source on GitHub ↗

/////////////////////////////////////////////////////////////////////////// ContentWriter ///////////////////////////////////////////////////////////////////////////

Source from the content-addressed store, hash-verified

162// ContentWriter
163////////////////////////////////////////////////////////////////////////////////
164ContentWriter::ContentWriter(const std::shared_ptr<Writer>& rhs)
165 : writer(rhs) {}
166
167ContentWriter& ContentWriter::operator=(ContentWriter&& rhs) noexcept {
168 writer = std::move(rhs.writer);

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected