| 70 | } |
| 71 | |
| 72 | VehicleMask CalcRoadMask(FeatureType & f) const |
| 73 | { |
| 74 | feature::TypesHolder const types(f); |
| 75 | if (types.HasWithSubclass(m_constructionType)) |
| 76 | return 0; |
| 77 | |
| 78 | return CalcMask([&](VehicleModelInterface const & model) { return model.IsRoad(types); }); |
| 79 | } |
| 80 | |
| 81 | VehicleMask CalcOneWayMask(FeatureType & f) const |
| 82 | { |
no test coverage detected