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

helpers.hpp « storage_tests « storage - github.com/mapsme/omim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 2ff0db7405a3c70ab04233b8c8f3697c10ab46f9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#pragma once

#include "geometry/mercator.hpp"

#include <memory>

namespace storage
{
class CountryInfoGetter;

std::unique_ptr<CountryInfoGetter> CreateCountryInfoGetter();

bool AlmostEqualRectsAbs(const m2::RectD & r1, const m2::RectD & r2);
} // namespace storage