All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Pages
InteriorLabelAnchorCategory.h
1 // Copyright eeGeo Ltd (2012-2014), All Rights Reserved
2 
3 #pragma once
4 
5 #include "LabelAnchorCategory.h"
6 
7 namespace Eegeo
8 {
9  namespace Resources
10  {
11  namespace Interiors
12  {
13  namespace Builder
14  {
16  {
17  InteriorLabelAnchorCategory(const Labels::LabelAnchorCategory::IdType& categoryId,
18  float maximumPriority)
19  : m_id(categoryId)
20  , m_maximumPriority(maximumPriority)
21  {
22 
23  }
24  const Labels::LabelAnchorCategory::IdType& GetId() const { return m_id; }
25  float GetMaximumPriority() const { return m_maximumPriority; }
26 
27  private:
28  Labels::LabelAnchorCategory::IdType m_id;
29  float m_maximumPriority;
30  };
31  }
32  }
33  }
34 }