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

transit_version.hpp « transit - github.com/mapsme/omim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 97b3c8547099ff052345db4ca6ad0a30c04006fc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
#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