All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Pages
TransportWayClassificationLookup.h
1 #pragma once
2 
3 #include "Transport.h"
4 #include "ITransportWayClassificationLookup.h"
5 #include "Types.h"
6 #include "HashHelpers.h"
7 
8 #include <unordered_map>
9 namespace Eegeo
10 {
11  namespace Transport
12  {
14  {
15  public:
17  const std::unordered_map<Eegeo::Resources::Roads::FunctionalRoadClass::Type, std::string, Helpers::EnumHash>& frcToTransportWayClassification
18  );
19 
20  std::string Get(const Eegeo::Resources::Roads::FunctionalRoadClass::Type functionalRoadClass) const override;
21  private:
22  std::unordered_map<Eegeo::Resources::Roads::FunctionalRoadClass::Type, std::string, Helpers::EnumHash> m_frcToTransportWayClassification;
23  };
24  }
25 }