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

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

#include "routing_common/num_mwm_id.hpp"

#include "storage/country_info_getter.hpp"
#include "storage/storage.hpp"

#include "geometry/tree4d.hpp"

#include <memory>

std::unique_ptr<m4::Tree<routing::NumMwmId>> MakeNumMwmTree(
    routing::NumMwmIds const & numMwmIds, storage::CountryInfoGetter const & countryInfoGetter);
std::shared_ptr<routing::NumMwmIds> CreateNumMwmIds(storage::Storage const & storage);