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: 0fe0fa5e8d2933bfca15f1d7dc84e547148404ef (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#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.
/// @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 BuildCrossRoutingIndex(string const & baseDir, string const & countryName, string const & osrmFile);
}