| 21 | } |
| 22 | |
| 23 | void FeatureMakerSimple::ParseParams(FeatureBuilderParams & params, OsmElement & p) const |
| 24 | { |
| 25 | auto const & cl = classif(); |
| 26 | ftype::GetNameAndType(&p, params, [&cl](uint32_t type) { return cl.IsTypeValid(type); }, |
| 27 | [this](OsmElement const * p) { return GetOrigin(*p); }); |
| 28 | } |
| 29 | |
| 30 | std::optional<m2::PointD> FeatureMakerSimple::ReadNode(uint64_t id) const |
| 31 | { |
nothing calls this directly
no test coverage detected