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 /map/booking_filter.hpp
parentdd7186b48be4636c1e67d223817a47f3f3a026e9 (diff)
[indexer] DataSource refactoring
Diffstat (limited to 'map/booking_filter.hpp')
-rw-r--r--map/booking_filter.hpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/map/booking_filter.hpp b/map/booking_filter.hpp
index bf4fbf71ba..a15e2cd387 100644
--- a/map/booking_filter.hpp
+++ b/map/booking_filter.hpp
@@ -7,7 +7,7 @@
#include <memory>
struct FeatureID;
-class DataSourceBase;
+class DataSource;
namespace search
{
@@ -28,7 +28,7 @@ public:
public:
virtual ~Delegate() = default;
- virtual DataSourceBase const & GetDataSource() const = 0;
+ virtual DataSource const & GetDataSource() const = 0;
virtual Api const & GetApi() const = 0;
};