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 'map/framework.hpp')
-rw-r--r--map/framework.hpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/map/framework.hpp b/map/framework.hpp
index efa73794a6..72ab924b8d 100644
--- a/map/framework.hpp
+++ b/map/framework.hpp
@@ -774,10 +774,10 @@ public:
void CloseRouting();
void GetRouteFollowingInfo(location::FollowingInfo & info) const { m_routingSession.GetRouteFollowingInfo(info); }
m2::PointD GetRouteEndPoint() const { return m_routingSession.GetEndPoint(); }
+ /// Returns the most situable router engine type.
+ routing::RouterType GetBestRouter(m2::PointD const & startPoint, m2::PointD const & finalPoint) const;
routing::RouterType GetLastUsedRouter() const;
void SetLastUsedRouter(routing::RouterType type);
- /// Returns the most situable router engine type. Bases on distance and the last used router.
- routing::RouterType GetBestRouter(m2::PointD const & startPoint, m2::PointD const & finalPoint);
// Sound notifications for turn instructions.
inline void EnableTurnNotifications(bool enable) { m_routingSession.EnableTurnNotifications(enable); }
inline bool AreTurnNotificationsEnabled() const { return m_routingSession.AreTurnNotificationsEnabled(); }