| 405 | } |
| 406 | |
| 407 | friend std::string DebugPrint(MultiGeometry const & geom) |
| 408 | { |
| 409 | auto str = ::DebugPrint(geom.m_lines); |
| 410 | if (geom.HasTimestamps()) |
| 411 | str.append(" ").append(::DebugPrint(geom.m_timestamps)); |
| 412 | return str; |
| 413 | } |
| 414 | |
| 415 | void FromPoints(std::vector<m2::PointD> const & points); |
| 416 |
nothing calls this directly
no test coverage detected