| 38 | } |
| 39 | |
| 40 | Route::Route(string const & router, vector<m2::PointD> const & points, uint64_t routeId, string const & name) |
| 41 | : m_router(router) |
| 42 | , m_routingSettings(GetRoutingSettings(VehicleType::Car)) |
| 43 | , m_name(name) |
| 44 | , m_poly(points.begin(), points.end()) |
| 45 | , m_routeId(routeId) |
| 46 | {} |
| 47 | |
| 48 | void Route::AddAbsentCountry(string const & name) |
| 49 | { |
nothing calls this directly
no test coverage detected