ZeroGeometryLoader ------------------------------------------------------------------------------
| 96 | |
| 97 | // ZeroGeometryLoader ------------------------------------------------------------------------------ |
| 98 | void ZeroGeometryLoader::Load(uint32_t /* featureId */, routing::RoadGeometry & road) |
| 99 | { |
| 100 | // Any valid road will do. |
| 101 | auto const points = routing::RoadGeometry::Points({{0.0, 0.0}, {0.0, 1.0}}); |
| 102 | road = RoadGeometry(true /* oneWay */, 1.0 /* weightSpeedKMpH */, 1.0 /* etaSpeedKMpH */, points); |
| 103 | } |
| 104 | |
| 105 | // TestIndexGraphLoader ---------------------------------------------------------------------------- |
| 106 | IndexGraph & TestIndexGraphLoader::GetIndexGraph(NumMwmId mwmId) |
nothing calls this directly
no test coverage detected