| 181 | } |
| 182 | |
| 183 | bool RoutingSession::IsNavigable() const |
| 184 | { |
| 185 | CHECK_THREAD_CHECKER(m_threadChecker, ()); |
| 186 | return (m_state == SessionState::RouteNotStarted || m_state == SessionState::OnRoute || |
| 187 | m_state == SessionState::RouteFinished); |
| 188 | } |
| 189 | |
| 190 | bool RoutingSession::IsBuilt() const |
| 191 | { |
no outgoing calls
no test coverage detected