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 'map/search_api.hpp')
-rw-r--r--map/search_api.hpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/map/search_api.hpp b/map/search_api.hpp
index 257bad307f..11e39d0dbf 100644
--- a/map/search_api.hpp
+++ b/map/search_api.hpp
@@ -25,7 +25,7 @@
#include <boost/optional.hpp>
-class DataSourceBase;
+class DataSource;
namespace search
{
@@ -87,7 +87,7 @@ public:
virtual search::ProductInfo GetProductInfo(search::Result const & result) const { return {}; };
};
- SearchAPI(DataSourceBase & dataSource, storage::Storage const & storage,
+ SearchAPI(DataSource & dataSource, storage::Storage const & storage,
storage::CountryInfoGetter const & infoGetter, Delegate & delegate);
virtual ~SearchAPI() = default;
@@ -155,7 +155,7 @@ private:
bool QueryMayBeSkipped(search::SearchParams const & prevParams,
search::SearchParams const & currParams) const;
- DataSourceBase & m_dataSource;
+ DataSource & m_dataSource;
storage::Storage const & m_storage;
storage::CountryInfoGetter const & m_infoGetter;
Delegate & m_delegate;