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

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

#include "../std/string.hpp"
#include "../std/vector.hpp"
#include "../std/set.hpp"

namespace routing
{
/// @param[in]  baseDir   Full path to .mwm files directory.
/// @param[in]  countryName   Country name same with .mwm and .border file name.
/// @param[in]  osrmFile  Full path to .osrm file (all prepared osrm files should be there).
void BuildRoutingIndex(string const & baseDir, string const & countryName, string const & osrmFile);

/// @param[in]  baseDir   Full path to .mwm files directory.
void BuildCrossesRoutingIndex(string const & baseDir);
}