| 23 | |
| 24 | template <typename Source, typename Info> |
| 25 | void Read(Source & src, Info & i) |
| 26 | { |
| 27 | rw::Read(src, i.m_tag); |
| 28 | |
| 29 | i.m_offset = ReadVarUint<uint64_t>(src); |
| 30 | i.m_size = ReadVarUint<uint64_t>(src); |
| 31 | } |
| 32 | |
| 33 | template <typename Sink, typename Info> |
| 34 | void Write(Sink & sink, Info const & i) |
no outgoing calls