/
githubmirror
/
omim
Обзор
Документация
Войти
/
githubmirror
/
omim
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
indexer/data_source_helpers.hpp
14 строк
319 B
tatiana-yan
[indexer] Style & includes
30 июл 2018, 19:26
30 июл 2018, 19:26
0e889ff
Код
Авторство
О чём код?
#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); }