| 16 | EditorDelegate::EditorDelegate(DataSource const & dataSource) : m_dataSource(dataSource) {} |
| 17 | |
| 18 | MwmSet::MwmId EditorDelegate::GetMwmIdByMapName(string const & name) const |
| 19 | { |
| 20 | return m_dataSource.GetMwmIdByCountryFile(platform::CountryFile(name)); |
| 21 | } |
| 22 | |
| 23 | unique_ptr<osm::EditableMapObject> EditorDelegate::GetOriginalMapObject(FeatureID const & fid) const |
| 24 | { |
nothing calls this directly
no test coverage detected