9 lines
167 B
C++
9 lines
167 B
C++
|
|
#pragma once
|
||
|
|
|
||
|
|
#include <string>
|
||
|
|
|
||
|
|
namespace routing
|
||
|
|
{
|
||
|
|
bool BuildWorldRoads(std::string const & mwmFilePath, std::string const & roadsFilePath);
|
||
|
|
} // namespace routing
|