All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Pages
PlaceNamesControllerFactory.h
1 // Copyright eeGeo Ltd (2012-2014), All Rights Reserved
2 
3 #pragma once
4 
5 #include "Types.h"
6 #include "PlaceNames.h"
7 #include "Camera.h"
8 #include "Rendering.h"
9 #include "CityThemes.h"
10 
11 namespace Eegeo
12 {
13  namespace Resources
14  {
15  namespace PlaceNames
16  {
18  {
19  public:
20  static PlaceNamesController* CreateForDevice(
21  float dpi,
22  PlaceNamesRepository& placeNamesRepository,
23  const Rendering::EnvironmentFlatteningService& environmentFlatteningService,
24  CityThemes::ICityThemesService& cityThemesService
25  );
26  };
27  }
28  }
29 }
30