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
path: root/map
diff options
context:
space:
mode:
authorVladimir Byko-Ianko <v.bykoianko@corp.mail.ru>2016-06-29 19:43:03 +0300
committerVladimir Byko-Ianko <v.bykoianko@corp.mail.ru>2016-06-29 19:43:03 +0300
commit8f3e849b3dbba2e987ba1dba283c628e72e2151e (patch)
tree13caf8ed6f20f2682e7cd283f9b0de9d2d8779a9 /map
parentcfa92adaa5dc7fce51f0014206e238ea7a79e5ab (diff)
Reveiw fixes.
Diffstat (limited to 'map')
-rw-r--r--map/framework.hpp6
1 files changed, 6 insertions, 0 deletions
diff --git a/map/framework.hpp b/map/framework.hpp
index 5fde90dcb4..4cbaafec60 100644
--- a/map/framework.hpp
+++ b/map/framework.hpp
@@ -594,8 +594,14 @@ public:
bool IsRoutingActive() const { return m_routingSession.IsActive(); }
bool IsRouteBuilt() const { return m_routingSession.IsBuilt(); }
bool IsRouteBuilding() const { return m_routingSession.IsBuilding(); }
+ bool IsRouteBuildingOnly() const { return m_routingSession.IsBuildingOnly(); }
+ bool IsRouteRebuildingOnly() const { return m_routingSession.IsRebuildingOnly(); }
+ bool IsRouteNotReady() const { return m_routingSession.IsNotReady(); }
+ bool IsRouteFinished() const { return m_routingSession.IsFinished(); }
+ bool IsRouteNoFollowing() const { return m_routingSession.IsNoFollowing(); }
bool IsOnRoute() const { return m_routingSession.IsOnRoute(); }
bool IsRouteNavigable() const { return m_routingSession.IsNavigable(); }
+
void BuildRoute(m2::PointD const & finish, uint32_t timeoutSec);
void BuildRoute(m2::PointD const & start, m2::PointD const & finish, uint32_t timeoutSec);
// FollowRoute has a bug where the router follows the route even if the method hads't been called.