| 37 | string GetName() const override { return "Dummy"; } |
| 38 | void SetGuides(GuidesTracks && /* guides */) override {} |
| 39 | RouterResultCode CalculateRoute(Checkpoints const & checkpoints, m2::PointD const & startDirection, |
| 40 | bool adjustToPrevRoute, RouterDelegate const & delegate, Route & route) override |
| 41 | { |
| 42 | route = Route("dummy", checkpoints.GetPoints().cbegin(), checkpoints.GetPoints().cend(), 0 /* route id */); |
| 43 | |
| 44 | for (auto const & absent : m_absent) |
| 45 | route.AddAbsentCountry(absent); |
| 46 | |
| 47 | return m_result; |
| 48 | } |
| 49 | |
| 50 | bool FindClosestProjectionToRoad(m2::PointD const & point, m2::PointD const & direction, double radius, |
| 51 | EdgeProj & proj) override |
nothing calls this directly
no test coverage detected