Repo created

This commit is contained in:
Fr4nz D13trich 2025-11-22 13:58:55 +01:00
parent 4af19165ec
commit 68073add76
12458 changed files with 12350765 additions and 2 deletions

View file

@ -0,0 +1,34 @@
#pragma once
#include "coding/reader.hpp"
#include "base/assert.hpp"
#include <string>
#include <type_traits>
namespace transit
{
enum class TransitVersion
{
OnlySubway = 0,
AllPublicTransport = 1,
Counter = 2
};
// Reads version from header in the transit mwm section and returns it.
TransitVersion GetVersion(Reader & reader);
inline std::string DebugPrint(TransitVersion version)
{
switch (version)
{
case TransitVersion::OnlySubway: return "OnlySubway";
case TransitVersion::AllPublicTransport: return "AllPublicTransport";
case TransitVersion::Counter: return "Counter";
}
LOG(LERROR, ("Unknown version:", static_cast<std::underlying_type<TransitVersion>::type>(version)));
UNREACHABLE();
}
} // namespace transit