MCPcopy Create free account
hub / github.com/bitcoin/bitcoin / Serialize

Method Serialize

src/serialize.h:476–476  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

474public:
475 explicit Wrapper(T obj) : m_object(obj) {}
476 template<typename Stream> void Serialize(Stream &s) const { Formatter().Ser(s, m_object); }
477 template<typename Stream> void Unserialize(Stream &s) { Formatter().Unser(s, m_object); }
478};
479

Callers 2

serialize.hFile · 0.45
SerializeFunction · 0.45

Calls 1

SerMethod · 0.45

Tested by

no test coverage detected