| 64 | DECLARE_CHECKER_INSTANCE(CustomIsBuildingChecker); |
| 65 | |
| 66 | bool operator()(FeatureType & ft) const |
| 67 | { |
| 68 | if (!ft.GetHouseNumber().empty()) |
| 69 | return true; |
| 70 | |
| 71 | if (ft.GetGeomType() == feature::GeomType::Line) |
| 72 | return IsAddressInterpolChecker::Instance()(ft); |
| 73 | else |
| 74 | return IsBuildingChecker::Instance()(ft); |
| 75 | } |
| 76 | }; |
| 77 | } // namespace |
| 78 |
nothing calls this directly
no test coverage detected