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:
authortatiana-yan <tatiana.kondakova@gmail.com>2018-06-26 10:51:37 +0300
committerArsentiy Milchakov <milcars@mapswithme.com>2018-06-27 19:20:52 +0300
commit570b2b0b35df1fad001460eccf35da31e334b8b0 (patch)
tree2f805cf3122db499b794248f3f6c1bdd232b258c /search/utils.hpp
parentdd7186b48be4636c1e67d223817a47f3f3a026e9 (diff)
[indexer] DataSource refactoring
Diffstat (limited to 'search/utils.hpp')
-rw-r--r--search/utils.hpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/search/utils.hpp b/search/utils.hpp
index c36ef22f8d..11d5cd97dd 100644
--- a/search/utils.hpp
+++ b/search/utils.hpp
@@ -20,7 +20,7 @@
#include <memory>
#include <vector>
-class DataSourceBase;
+class DataSource;
class MwmInfo;
namespace search
@@ -114,7 +114,7 @@ bool FillCategories(QuerySliceOnRawStrings<T> const & slice, Locales const & loc
return !types.empty();
}
-MwmSet::MwmHandle FindWorld(DataSourceBase const & dataSource,
- std::vector<std::shared_ptr<MwmInfo>> const &infos);
-MwmSet::MwmHandle FindWorld(DataSourceBase const & dataSource);
+MwmSet::MwmHandle FindWorld(DataSource const & dataSource,
+ std::vector<std::shared_ptr<MwmInfo>> const & infos);
+MwmSet::MwmHandle FindWorld(DataSource const & dataSource);
} // namespace search