Files
comaps/libs/indexer/data_source_helpers.hpp
Alexander Borsuk 76ffc99abd New cpp folder structure
Signed-off-by: Alexander Borsuk <me@alex.bio>
2025-08-14 20:52:04 +07:00

15 lines
319 B
C++

#pragma once
#include "geometry/point2d.hpp"
#include <functional>
class DataSource;
class FeatureType;
namespace indexer
{
void ForEachFeatureAtPoint(DataSource const & dataSource, std::function<void(FeatureType &)> && fn,
m2::PointD const & mercator, double toleranceInMeters = 0.0);
}