| 16 | } |
| 17 | |
| 18 | void Checkpoints::SetPointFrom(m2::PointD const & point) |
| 19 | { |
| 20 | ASSERT_LESS(m_passedIdx, m_points.size(), ()); |
| 21 | m_points[m_passedIdx] = point; |
| 22 | } |
| 23 | |
| 24 | m2::PointD const & Checkpoints::GetPoint(size_t pointIdx) const |
| 25 | { |
no test coverage detected