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/ranker.hpp')
-rw-r--r--search/ranker.hpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/search/ranker.hpp b/search/ranker.hpp
index 9cf11f09fd..1b702e1d35 100644
--- a/search/ranker.hpp
+++ b/search/ranker.hpp
@@ -29,7 +29,7 @@
#include <vector>
class CategoriesHolder;
-class DataSourceBase;
+class DataSource;
namespace storage
{
@@ -79,7 +79,7 @@ public:
size_t m_limit = 0;
};
- Ranker(DataSourceBase const & dataSource, CitiesBoundariesTable const & boundariesTable,
+ Ranker(DataSource const & dataSource, CitiesBoundariesTable const & boundariesTable,
storage::CountryInfoGetter const & infoGetter, KeywordLangMatcher & keywordsScorer,
Emitter & emitter, CategoriesHolder const & categories,
std::vector<Suggest> const & suggests, VillagesCache & villagesCache,
@@ -134,7 +134,7 @@ private:
int8_t m_localeCode;
RegionInfoGetter m_regionInfoGetter;
- DataSourceBase const & m_dataSource;
+ DataSource const & m_dataSource;
storage::CountryInfoGetter const & m_infoGetter;
Emitter & m_emitter;
CategoriesHolder const & m_categories;