All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Pages
LabelBuilderHelpers.h
1 // Copyright eeGeo Ltd (2012-2014), All Rights Reserved
2 
3 #pragma once
4 
5 #include "Labels.h"
6 #include "Icons.h"
7 #include <vector>
8 
9 namespace Eegeo
10 {
11  namespace Labels
12  {
13  namespace LabelBuilderHelpers
14  {
15  void CreateLabelIconDefinitionListForAnchorCategories(const Labels::ILabelAnchorCategoryIconMapper& labelAnchorCategoryIconMapper,
16  std::vector<const Labels::LabelAnchorCategory*>& anchorCategoriesInThisCell,
17  std::vector<const Icons::IconDefinition*>& out_labelIconDefinitions,
18  std::vector<int>& out_anchorCategoryIndexToIconIndex);
19  }
20  }
21 }