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

github.com/mapsme/omim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLev Dragunov <l.dragunov@corp.mail.ru>2015-04-03 16:43:59 +0300
committerAlex Zolotarev <alex@maps.me>2015-09-23 02:41:33 +0300
commitefaeab8e7b3b8cc863f601f29f98d4ff860955ce (patch)
tree134e41839ee339a64286dca761eeeb5c35c8586f /generator/routing_generator.hpp
parenteab75c690ec5da181cf3165c9689d304dadb8bc8 (diff)
Generator tool routing refactoring
Diffstat (limited to 'generator/routing_generator.hpp')
-rw-r--r--generator/routing_generator.hpp6
1 files changed, 4 insertions, 2 deletions
diff --git a/generator/routing_generator.hpp b/generator/routing_generator.hpp
index 3e7fea3525..0fe0fa5e8d 100644
--- a/generator/routing_generator.hpp
+++ b/generator/routing_generator.hpp
@@ -11,6 +11,8 @@ namespace routing
/// @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);
+/// @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);
}