All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Pages
InteriorsFloorCellFeature.h
1 #pragma once
2 
3 #include "Interiors.h"
4 #include "VectorMath.h"
5 
6 #include <string>
7 
8 namespace Eegeo
9 {
10  namespace Resources
11  {
12  namespace Interiors
13  {
15  {
16  public:
18  const std::string& featureId,
19  const v3& localEcefFeatureCenter
20  )
21  : m_featureId(featureId)
22  , m_localEcefFeatureCenter(localEcefFeatureCenter)
23  {}
24 
25  const std::string& GetFeatureId() const { return m_featureId; }
26  const v3& GetLocalEcefFeatureCenter() const { return m_localEcefFeatureCenter; }
27 
28 
29  private:
30  std::string m_featureId;
31  v3 m_localEcefFeatureCenter;
32 
33  };
34  }
35  }
36 }