Welcome to mirror list, hosted at ThFree Co, Russian Federation.

data_source_helpers.hpp « indexer - github.com/mapsme/omim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 3d08b29a3e7dcf37d82ac202ff1eeea376177339 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#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);
}