| 47 | m2::PointD constexpr RestrictionCollector::kNoCoords; |
| 48 | |
| 49 | RestrictionCollector::RestrictionCollector(std::string const & osmIdsToFeatureIdPath, IndexGraph & graph) |
| 50 | : m_indexGraph(graph) |
| 51 | { |
| 52 | ParseWaysOsmIdToFeatureIdMapping(osmIdsToFeatureIdPath, m_osmIdToFeatureIds); |
| 53 | } |
| 54 | |
| 55 | bool RestrictionCollector::Process(std::string const & restrictionPath) |
| 56 | { |
nothing calls this directly
no test coverage detected