MCPcopy Create free account
hub / github.com/CobaltFusion/DebugViewPP / Read

Function Read

include/DebugView++Lib/DbgviewReader.h:19–24  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

17
18template <typename T, class S>
19T Read(S& is)
20{
21 T t = T();
22 is.read(reinterpret_cast<char*>(&t), sizeof(t));
23 return t;
24}
25
26template <typename T, class S>
27void Write(S& is, T t)

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected