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:
Diffstat (limited to 'routing/routing_helpers.hpp')
-rw-r--r--routing/routing_helpers.hpp10
1 files changed, 10 insertions, 0 deletions
diff --git a/routing/routing_helpers.hpp b/routing/routing_helpers.hpp
index 76440a457e..e05d4f0093 100644
--- a/routing/routing_helpers.hpp
+++ b/routing/routing_helpers.hpp
@@ -2,7 +2,14 @@
#include "routing/bicycle_model.hpp"
#include "routing/car_model.hpp"
+#include "routing/directions_engine.hpp"
#include "routing/pedestrian_model.hpp"
+#include "routing/road_graph.hpp"
+#include "routing/route.hpp"
+
+#include "base/cancellable.hpp"
+
+#include "std/vector.hpp"
namespace routing
{
@@ -14,4 +21,7 @@ bool IsRoad(TTypes const & types)
PedestrianModel::AllLimitsInstance().HasRoadType(types) ||
BicycleModel::AllLimitsInstance().HasRoadType(types);
}
+
+void ReconstructRoute(IDirectionsEngine * engine, IRoadGraph const & graph,
+ my::Cancellable const & cancellable, vector<Junction> & path, Route & route);
} // namespace rouing