All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Pages
LabelStyleFactory.h
1 // Copyright eeGeo Ltd (2012-2014), All Rights Reserved
2 
3 #pragma once
4 
5 
6 #include "Labels.h"
7 #include "ILabelStyleFactory.h"
8 #include "Fonts.h"
9 #include "Types.h"
10 
11 
12 namespace Eegeo
13 {
14  namespace Labels
15  {
17  {
18  public:
19  LabelStyleFactory(const ILabelTextStyleRepository& labelTextStyleRepository,
20  const ILabelIconStyleRepository& labelIconStyleRepository,
21  float sizeScaleForProjection);
22 
23  LabelStyle* Create(const LabelStyleDto& labelStyleDto);
24  private:
25  const ILabelTextStyleRepository& m_labelTextStyleRepository;
26  const ILabelIconStyleRepository& m_labelIconStyleRepository;
27  const float m_sizeScaleForProjection;
28  int m_styleCount;
29  };
30  }
31 }