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: 090851cffa19255b078c1f36fad062a0593d97bd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#pragma once

#include "geometry/mercator.hpp"

#include <memory>

namespace storage
{
class CountryInfoGetter;

std::unique_ptr<CountryInfoGetter> CreateCountryInfoGetterObsolete();
std::unique_ptr<CountryInfoGetter> CreateCountryInfoGetter();

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