StoreInterface overrides:
| 73 | |
| 74 | // StoreInterface overrides: |
| 75 | Country * InsertToCountryTree(CountryId const & id, MwmSize mapSize, string const & mapSha1, size_t depth, |
| 76 | CountryId const & parent) override |
| 77 | { |
| 78 | Country country(id, parent); |
| 79 | if (mapSize) |
| 80 | country.SetFile(platform::CountryFile{id, mapSize, mapSha1}); |
| 81 | return &m_countries.AddAtDepth(depth, std::move(country)); |
| 82 | } |
| 83 | |
| 84 | void InsertOldMwmMapping(CountryId const & newId, CountryId const & oldId) override |
| 85 | { |
no test coverage detected