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:
authorArsentiy Milchakov <a.milchakov@corp.mail.ru>2016-08-09 14:26:59 +0300
committerArsentiy Milchakov <a.milchakov@corp.mail.ru>2016-08-09 14:39:27 +0300
commitcfafe65ea046427b9c47b87752b91e854dbcf635 (patch)
tree4409b63fe563bbfdb7e8fcfc3187b7c7960604cd /indexer/index_helpers.hpp
parent73994023b9a409878496c9a3ca4aee959c532eb4 (diff)
review fixes
Diffstat (limited to 'indexer/index_helpers.hpp')
-rw-r--r--indexer/index_helpers.hpp14
1 files changed, 14 insertions, 0 deletions
diff --git a/indexer/index_helpers.hpp b/indexer/index_helpers.hpp
new file mode 100644
index 0000000000..451d714e80
--- /dev/null
+++ b/indexer/index_helpers.hpp
@@ -0,0 +1,14 @@
+#pragma once
+
+#include "geometry/point2d.hpp"
+
+#include "std/function.hpp"
+
+class Index;
+class FeatureType;
+
+namespace indexer
+{
+void ForEachFeatureAtPoint(Index const & index, function<void(FeatureType &)> && fn,
+ m2::PointD const & mercator, double toleranceInMeters = 0.0);
+}