| 72 | |
| 73 | template <class Sink> |
| 74 | void Write(Sink & sink, uint64_t wayID, uint32_t nodeIdx) const |
| 75 | { |
| 76 | WriteToSink(sink, wayID); |
| 77 | WriteToSink(sink, nodeIdx); |
| 78 | WriteToSink(sink, m_coord.x); |
| 79 | WriteToSink(sink, m_coord.y); |
| 80 | Save(sink, m_t); |
| 81 | } |
| 82 | |
| 83 | template <class Source> |
| 84 | void Read(Source & src, uint64_t & wayID, uint32_t & nodeIdx) |
nothing calls this directly
no test coverage detected