mirror of
https://codeberg.org/comaps/comaps
synced 2025-12-20 05:13:58 +00:00
committed by
Konstantin Pastbin
parent
c9cbb64f12
commit
76ffc99abd
19
libs/routing/cross_mwm_connector.cpp
Normal file
19
libs/routing/cross_mwm_connector.cpp
Normal file
@@ -0,0 +1,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
|
||||
Reference in New Issue
Block a user