All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Pages
LabelAnchorCategoryIconMapper.h
1 // Copyright eeGeo Ltd (2012-2014), All Rights Reserved
2 
3 #pragma once
4 
5 #include "ILabelAnchorCategoryIconMapper.h"
6 #include "Labels.h"
7 #include "Icons.h"
8 
9 namespace Eegeo
10 {
11  namespace Labels
12  {
14  {
15  public:
16  LabelAnchorCategoryIconMapper(const ILabelAnchorCategoryIconMapRepository& labelAnchorCategoryIconMapRepository, const Icons::IconSet& iconSet);
18 
19  const Icons::IconDefinition* GetIcon(const LabelAnchorCategory& anchorCategory) const;
20 
21  private:
22 
23  const ILabelAnchorCategoryIconMapRepository& m_labelAnchorCategoryIconMapRepository;
24  const Icons::IconSet& m_iconSet;
25  };
26 
27  }
28 }