forked from organicmaps/organicmaps
added Storage::FindIndexByName function.
This commit is contained in:
parent
09d97d23cb
commit
729d81da31
2 changed files with 13 additions and 0 deletions
|
@ -488,4 +488,15 @@ namespace storage
|
|||
{
|
||||
return m_currentVersion;
|
||||
}
|
||||
|
||||
TIndex const Storage::FindIndexByName(string const & name) const
|
||||
{
|
||||
for (unsigned i = 0; i < m_countries.SiblingsCount(); ++i)
|
||||
for (unsigned j = 0; j < m_countries[i].SiblingsCount(); ++j)
|
||||
for (unsigned k = 0; k < m_countries[i][j].SiblingsCount(); ++k)
|
||||
if (m_countries[i][j][k].Value().Name() == name)
|
||||
return TIndex(i, j, k);
|
||||
|
||||
return TIndex();
|
||||
}
|
||||
}
|
||||
|
|
|
@ -146,6 +146,8 @@ namespace storage
|
|||
void Unsubscribe(int slotId);
|
||||
//@}
|
||||
|
||||
TIndex const FindIndexByName(string const & name) const;
|
||||
|
||||
size_t CountriesCount(TIndex const & index) const;
|
||||
string const & CountryName(TIndex const & index) const;
|
||||
string const & CountryFlag(TIndex const & index) const;
|
||||
|
|
Loading…
Add table
Reference in a new issue