All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Pages
SelectedRoadRepository.h
1 // Copyright eeGeo Ltd (2012-2014), All Rights Reserved
2 
3 #pragma once
4 
5 #include "Types.h"
6 #include "SelectedRoad.h"
7 #include <set>
8 
9 namespace Eegeo
10 {
11  namespace Routes
12  {
13  namespace Fitting
14  {
15  namespace NavGraphConforming
16  {
18  {
19  public:
20 
21  bool Contains(const SelectedRoad& selectedRoad) const;
22 
23  bool TryInsert(const SelectedRoad& selectedRoad);
24 
25  void Clear();
26 
27  private:
28  std::set<SelectedRoad> m_selectedRoads;
29  };
30  }
31  }
32  }
33 }