| 272 | } |
| 273 | |
| 274 | std::string MapObject::GetOrganic() const |
| 275 | { |
| 276 | auto const & isOrganic = ftypes::IsOrganicChecker::Instance(); |
| 277 | |
| 278 | for (auto const type : m_types) { |
| 279 | if (isOrganic(type)) |
| 280 | return localisation::TranslatedFeatureType(classif().GetReadableObjectName(type)); |
| 281 | } |
| 282 | |
| 283 | return {}; |
| 284 | } |
| 285 | |
| 286 | bool MapObject::IsPointType() const |
| 287 | { |
nothing calls this directly
no test coverage detected