| 35 | |
| 36 | template <typename T> |
| 37 | void Serialize(T & w) |
| 38 | { |
| 39 | WriteVarUint(w, m_start); |
| 40 | WriteVarUint(w, m_end); |
| 41 | WriteToSink(w, m_oneway); |
| 42 | rw::WriteVectorOfPOD(w, m_ways); |
| 43 | } |
| 44 | |
| 45 | template <typename T> |
| 46 | static LineString Deserialize(T & r) |
nothing calls this directly
no test coverage detected