All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Pages
MultiPolygon.h
1 // Copyright (c) 2015 eeGeo. All rights reserved.
2 
3 #pragma once
4 
5 #include "document.h"
6 #include "GeoJSONObject.h"
7 #include "PolygonData.h"
8 
9 namespace Eegeo
10 {
11  namespace Data
12  {
13  namespace GeoJSON
14  {
15  class MultiPolygon : public GeoJSONObject
16  {
17  public:
18  MultiPolygon(const rapidjson::Value& value);
19 
20  int GetNumPolygons() const;
21  PolygonData GetPolygonAt(int index) const;
22  };
23  }
24  }
25 }