All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Pages
GeoJSONDocument.h
1 // Copyright (c) 2015 eeGeo. All rights reserved.
2 
3 #pragma once
4 
5 #include "Types.h"
6 #include "GeoJSONObject.h"
7 #include "document.h"
8 #include <string>
9 
10 namespace Eegeo
11 {
12  namespace Data
13  {
14  namespace GeoJSON
15  {
17  {
18  public:
19  GeoJSONDocument(const std::string& document);
20  GeoJSONObject Parse();
21  private:
22  bool m_parsed;
23  std::string m_documentStr;
24  rapidjson::Document m_document;
25  };
26  }
27  }
28 }