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

#include <string>

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(std::string const & baseDir, std::string const & countryName, std::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).
/// perform if it's emplty.
void BuildCrossRoutingIndex(std::string const & baseDir, std::string const & countryName,
                            std::string const & osrmFile);
}