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

road_info_getter.hpp « openlr - github.com/mapsme/omim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: a5601e28b60b98034e166cbe156b6dfa20b168b5 (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
36
37
38
39
40
41
42
#pragma once

#include "openlr/openlr_model.hpp"

#include "indexer/feature_data.hpp"
#include "indexer/ftypes_matcher.hpp"

#include <map>

class Classificator;
class DataSource;

namespace feature
{
class TypesHolder;
}

namespace openlr
{
class RoadInfoGetter final
{
public:
  struct RoadInfo
  {
    explicit RoadInfo(FeatureType & ft);

    ftypes::HighwayClass m_hwClass = ftypes::HighwayClass::Undefined;
    bool m_link = false;
    bool m_oneWay = false;
    bool m_isRoundabout = false;
  };

  explicit RoadInfoGetter(DataSource const & dataSource);

  RoadInfo Get(FeatureID const & fid);

 private:

  DataSource const & m_dataSource;
  std::map<FeatureID, RoadInfo> m_cache;
};
}  // namespace openlr