Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cross_mwm_connector.cpp « routing - github.com/mapsme/omim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: dcf89f73de8ea828ba19bb779a159150b6ee681b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#include "routing/cross_mwm_connector.hpp"

namespace routing
{
namespace connector
{
std::string DebugPrint(WeightsLoadState state)
{
  switch (state)
  {
  case WeightsLoadState::Unknown: return "Unknown";
  case WeightsLoadState::ReadyToLoad: return "ReadyToLoad";
  case WeightsLoadState::NotExists: return "NotExists";
  case WeightsLoadState::Loaded: return "Loaded";
  }
  UNREACHABLE();
}
}  // namespace connector
}  // namespace routing