Files
comaps/libs/routing/regions_decl.hpp
Konstantin Pastbin bfffa1fff4 Format all C++ and Java code via clang-format
Signed-off-by: Konstantin Pastbin <konstantin.pastbin@gmail.com>
2025-08-17 14:32:37 +07:00

18 lines
373 B
C++

#pragma once
#include "geometry/point2d.hpp"
#include "geometry/rect2d.hpp"
#include <functional>
#include <string>
class DataSource;
namespace routing
{
using CountryFileGetterFn = std::function<std::string(m2::PointD const &)>;
using CountryRectFn = std::function<m2::RectD(std::string const & countryId)>;
class Checkpoints;
class NumMwmIds;
} // namespace routing