All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Pages
InteriorsFloorCellFeatureContainer.h
1 #pragma once
2 
3 #include "Interiors.h"
4 #include "Types.h"
5 #include "InteriorsFloorCellFeature.h"
6 
7 #include <vector>
8 
9 namespace Eegeo
10 {
11  namespace Resources
12  {
13  namespace Interiors
14  {
16  {
17  public:
19  const std::vector<InteriorsFloorCellFeature>& instanceFeatures,
20  const std::vector<InteriorsFloorCellFeature>& areaHighlightFeatures
21  );
22 
23  const std::vector<InteriorsFloorCellFeature>& GetInstanceFeatures() const { return m_instanceFeatures; }
24  const std::vector<InteriorsFloorCellFeature>& GetAreaHighlightFeatures() const { return m_areaHighlightFeatures; }
25 
26  private:
27  std::vector<InteriorsFloorCellFeature> m_instanceFeatures;
28  std::vector<InteriorsFloorCellFeature> m_areaHighlightFeatures;
29  };
30  }
31  }
32 }