| 375 | } |
| 376 | |
| 377 | bool EditableMapObject::UpdateMetadataValue(string_view key, string value) |
| 378 | { |
| 379 | MetadataID type; |
| 380 | if (!feature::Metadata::TypeFromString(key, type)) |
| 381 | return false; |
| 382 | |
| 383 | SetMetadata(type, std::move(value)); |
| 384 | return true; |
| 385 | } |
| 386 | |
| 387 | void EditableMapObject::SetOpeningHours(std::string oh) |
| 388 | { |
nothing calls this directly
no test coverage detected