mirror of
https://codeberg.org/comaps/comaps
synced 2025-12-23 22:53:43 +00:00
* ADL for AlmostEqual* and use math:: instead of base:: Signed-off-by: Alexander Borsuk <me@alex.bio>
14 lines
199 B
C++
14 lines
199 B
C++
#pragma once
|
|
|
|
#include "geometry/mercator.hpp"
|
|
|
|
#include <memory>
|
|
|
|
namespace storage
|
|
{
|
|
class CountryInfoGetter;
|
|
|
|
std::unique_ptr<CountryInfoGetter> CreateCountryInfoGetter();
|
|
|
|
} // namespace storage
|