All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Pages
TrafficCongestionService.h
1 // Copyright (c) 2014 eeGeo. All rights reserved.
2 
3 #pragma once
4 
5 #include "ITrafficCongestionService.h"
6 #include "TrafficCongestion.h"
7 
8 namespace Eegeo
9 {
10  namespace TrafficCongestion
11  {
13  {
14  public:
16  : m_model(model)
17  {
18 
19  }
20 
21  virtual void SetCongestionFor(
22  const Streaming::MortonKey& key,
23  const int roadId,
24  const CongestionLevel::CongestionLevelValues congestionLevel);
25 
26  private:
27  TrafficCongestionModel& m_model;
28  };
29  }
30 }
31