All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Pages
LabelLayer.h
1 // Copyright eeGeo Ltd (2012-2014), All Rights Reserved
2 
3 #pragma once
4 
5 #include "Types.h"
6 #include "Labels.h"
7 
8 #include <string>
9 
10 namespace Eegeo
11 {
12  namespace Labels
13  {
15  {
16  public:
17  typedef int IdType;
18 
19  LabelLayer(IdType labelLayerId, const std::string& labelLayerName);
20 
21  IdType GetId() const { return m_labelLayerId; }
22 
23  const std::string& GetLabelLayerName() const { return m_labelLayerName; }
24 
25  private:
26  const LabelLayer::IdType m_labelLayerId;
27  const std::string m_labelLayerName;
28  };
29  }
30 }