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 'indexer/data_source_helpers.hpp')
-rw-r--r--indexer/data_source_helpers.hpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/indexer/data_source_helpers.hpp b/indexer/data_source_helpers.hpp
index f7dc7a4582..f638e5e5a7 100644
--- a/indexer/data_source_helpers.hpp
+++ b/indexer/data_source_helpers.hpp
@@ -4,11 +4,11 @@
#include "std/function.hpp"
-class DataSourceBase;
+class DataSource;
class FeatureType;
namespace indexer
{
-void ForEachFeatureAtPoint(DataSourceBase const & dataSource, function<void(FeatureType &)> && fn,
+void ForEachFeatureAtPoint(DataSource const & dataSource, function<void(FeatureType &)> && fn,
m2::PointD const & mercator, double toleranceInMeters = 0.0);
}