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/geocoder.hpp')
-rw-r--r--search/geocoder.hpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/search/geocoder.hpp b/search/geocoder.hpp
index 0d280c9e3f..749e04197e 100644
--- a/search/geocoder.hpp
+++ b/search/geocoder.hpp
@@ -43,7 +43,7 @@
#include "std/vector.hpp"
class CategoriesHolder;
-class DataSourceBase;
+class DataSource;
class MwmValue;
namespace storage
@@ -87,7 +87,7 @@ public:
shared_ptr<Tracer> m_tracer;
};
- Geocoder(DataSourceBase const & dataSource, storage::CountryInfoGetter const & infoGetter,
+ Geocoder(DataSource const & dataSource, storage::CountryInfoGetter const & infoGetter,
CategoriesHolder const & categories, PreRanker & preRanker,
VillagesCache & villagesCache, ::base::Cancellable const & cancellable);
~Geocoder();
@@ -239,7 +239,7 @@ private:
WARN_UNUSED_RESULT bool GetTypeInGeocoding(BaseContext const & ctx, uint32_t featureId,
Model::Type & type);
- DataSourceBase const & m_dataSource;
+ DataSource const & m_dataSource;
storage::CountryInfoGetter const & m_infoGetter;
CategoriesHolder const & m_categories;