[old map downloader] Download all country simple implementation.

This commit is contained in:
Vladimir Byko-Ianko 2016-01-23 13:15:43 +03:00 committed by Sergey Yershov
parent 7362a04e8d
commit 46a3f975f7
2 changed files with 8 additions and 0 deletions

View file

@ -191,6 +191,13 @@ void CountryTree::RetryDownloading(int childPosition)
GetActiveMapLayout().RetryDownloading(GetChild(childPosition));
}
void CountryTree::DownloadAllCountry(MapOptions const & options)
{
size_t const childCount = GetChildCount();
for (size_t i = 0; i < childCount; ++i)
DownloadCountry(i, options);
}
void CountryTree::CancelDownloading(int childPosition)
{
GetStorage().DeleteFromDownloader(GetChild(childPosition));

View file

@ -67,6 +67,7 @@ public:
void DownloadCountry(int childPosition, MapOptions const & options);
void DeleteCountry(int childPosition, MapOptions const & options);
void RetryDownloading(int childPosition);
void DownloadAllCountry(MapOptions const & options);
///@}
void CancelDownloading(int childPosition);