All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Pages
InteriorsFloorOutlinePolygon.h
1 // Copyright eeGeo Ltd (2012-2019), All Rights Reserved
2 
3 #pragma once
4 
5 #include "Interiors.h"
6 #include "LatLongAltitude.h"
7 #include <vector>
8 
9 namespace Eegeo
10 {
11  namespace Resources
12  {
13  namespace Interiors
14  {
15  typedef std::vector<Eegeo::Space::LatLong> InteriorFloorOutlinePolygonContour;
16 
18  {
19  public:
20 
21  InteriorsFloorOutlinePolygon(const InteriorFloorOutlinePolygonContour& outerRing,
22  const std::vector<InteriorFloorOutlinePolygonContour>& innerRings);
23 
24  const InteriorFloorOutlinePolygonContour& GetOuterRing() const;
25  const std::vector<InteriorFloorOutlinePolygonContour>& GetInnerRings() const;
26 
27  private:
28 
29  const InteriorFloorOutlinePolygonContour m_outerRing;
30  const std::vector<InteriorFloorOutlinePolygonContour> m_innerRings;
31  };
32  }
33  }
34 }