| 31 | } |
| 32 | |
| 33 | void ParseWaysOsmIdToFeatureIdMapping(std::string const & osmIdsToFeatureIdPath, OsmIdToFeatureIds & osmIdToFeatureIds) |
| 34 | { |
| 35 | ForEachWayFromFile(osmIdsToFeatureIdPath, [&](uint32_t featureId, base::GeoObjectId osmId) |
| 36 | { AddFeatureId(osmId, featureId, osmIdToFeatureIds); }); |
| 37 | } |
| 38 | |
| 39 | void ParseWaysFeatureIdToOsmIdMapping(std::string const & osmIdsToFeatureIdPath, FeatureIdToOsmId & featureIdToOsmId) |
| 40 | { |
no test coverage detected