added Storage::FindIndexByName function.

This commit is contained in:
rachytski 2012-05-15 19:59:04 +04:00 committed by Alex Zolotarev
parent 09d97d23cb
commit 729d81da31
2 changed files with 13 additions and 0 deletions

View file

@ -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();
}
}

View file

@ -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;