MCPcopy Create free account
hub / github.com/comaps/comaps / Write

Method Write

libs/coding/writer.hpp:180–184  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

178 explicit WriterSink(WriterT & writer) : m_writer(writer), m_pos(0) {}
179
180 void Write(void const * p, size_t size)
181 {
182 m_writer.Write(p, size);
183 m_pos += size;
184 }
185
186private:
187 WriterT & m_writer;

Callers

nothing calls this directly

Calls 1

WriteMethod · 0.45

Tested by

no test coverage detected