| 107 | } |
| 108 | |
| 109 | std::string MapObject::GetLocalizedType() const |
| 110 | { |
| 111 | ASSERT(!m_types.Empty(), ()); |
| 112 | feature::TypesHolder copy(m_types); |
| 113 | copy.SortBySpec(); |
| 114 | |
| 115 | return localisation::TranslatedFeatureType(classif().GetReadableObjectName(copy.GetBestType())); |
| 116 | } |
| 117 | |
| 118 | std::string MapObject::GetLocalizedAllTypes(bool withMainType) const |
| 119 | { |
nothing calls this directly
no test coverage detected