[new downloader] Adding storage_helpers.

This commit is contained in:
Vladimir Byko-Ianko 2016-02-03 11:45:34 +03:00 committed by Sergey Yershov
parent f6b302a7b2
commit b45d339674
2 changed files with 33 additions and 0 deletions

View file

@ -0,0 +1,16 @@
#include "storage/storage_helpers.hpp"
#include "storage/country_info_getter.hpp"
#include "storage/storage.hpp"
namespace storage
{
bool IsPointCoveredByDownloadedMaps(m2::PointD const & position,
Storage const & storage,
CountryInfoGetter const & countryInfoGetter)
{
return storage.IsNodeDownloaded(countryInfoGetter.GetRegionCountryId(position));
}
} // namespace storage

View file

@ -0,0 +1,17 @@
#pragma once
#include "geometry/point2d.hpp"
namespace storage
{
class CountryInfoGetter;
class Storage;
/// \returns true if |position| is covered by a downloaded mwms and false otherwise.
/// \note |position| has coordinates in mercator.
/// \note This method takes into acount only maps enumerated in countries.txt.
bool IsPointCoveredByDownloadedMaps(m2::PointD const & position,
Storage const & storage,
CountryInfoGetter const & countryInfoGetter);
} // namespace storage