All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Pages
TrafficCongestionLevel.h
1 // Copyright (c) 2014 eeGeo. All rights reserved.
2 
3 #pragma once
4 
5 #include <string>
6 #include <vector>
7 
8 namespace Eegeo
9 {
10  namespace TrafficCongestion
11  {
12  namespace CongestionLevel
13  {
14  enum CongestionLevelValues
15  {
16  Light = 0,
17  Normal,
18  Heavy,
19  Gridlock
20  };
21 
22  bool TryParseCongestionLevel(const std::string& s, CongestionLevelValues& out_value);
23  };
24  }
25 }