Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mapsme/omim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'search/cities_boundaries_table.hpp')
-rw-r--r--search/cities_boundaries_table.hpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/search/cities_boundaries_table.hpp b/search/cities_boundaries_table.hpp
index 7c1634ebe7..e9ac3841fa 100644
--- a/search/cities_boundaries_table.hpp
+++ b/search/cities_boundaries_table.hpp
@@ -12,7 +12,7 @@
#include <utility>
#include <vector>
-class DataSourceBase;
+class DataSource;
namespace feature
{
@@ -58,7 +58,7 @@ public:
double m_eps = 0.0;
};
- explicit CitiesBoundariesTable(DataSourceBase const & dataSource) : m_dataSource(dataSource) {}
+ explicit CitiesBoundariesTable(DataSource const & dataSource) : m_dataSource(dataSource) {}
bool Load();
@@ -69,7 +69,7 @@ public:
bool Get(uint32_t fid, Boundaries & bs) const;
private:
- DataSourceBase const & m_dataSource;
+ DataSource const & m_dataSource;
MwmSet::MwmId m_mwmId;
std::unordered_map<uint32_t, std::vector<indexer::CityBoundary>> m_table;
double m_eps = 0.0;