| 66 | } |
| 67 | |
| 68 | void TestGeometryLoader::SetPassThroughAllowed(uint32_t featureId, bool passThroughAllowed) |
| 69 | { |
| 70 | auto const it = m_roads.find(featureId); |
| 71 | CHECK(it != m_roads.end(), ("No feature", featureId)); |
| 72 | m_roads[featureId].SetPassThroughAllowedForTests(passThroughAllowed); |
| 73 | } |
| 74 | |
| 75 | std::shared_ptr<EdgeEstimator> CreateEstimatorForCar(std::shared_ptr<TrafficStash> trafficStash) |
| 76 | { |