diff options
| author | Even Rouault <even.rouault@spatialys.com> | 2020-04-23 19:15:22 +0200 |
|---|---|---|
| committer | Even Rouault <even.rouault@spatialys.com> | 2020-04-23 22:45:50 +0200 |
| commit | dd2dd6cd2eb842e7f0a4abf89681a559cbb6751e (patch) | |
| tree | 26f7a026cd05419e8c4fc5449793e7f4ebc1b038 /include | |
| parent | 34fde0b4a4c3962d849acab78a305c0bf951988c (diff) | |
| download | PROJ-dd2dd6cd2eb842e7f0a4abf89681a559cbb6751e.tar.gz PROJ-dd2dd6cd2eb842e7f0a4abf89681a559cbb6751e.zip | |
io.hpp: avoid dependency to proj_json_streaming_writer.hpp (fixes #2182) (#2183)
Diffstat (limited to 'include')
| -rw-r--r-- | include/proj/io.hpp | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/include/proj/io.hpp b/include/proj/io.hpp index 37941901..c881d32b 100644 --- a/include/proj/io.hpp +++ b/include/proj/io.hpp @@ -38,11 +38,12 @@ #include "proj.h" -#include "proj_json_streaming_writer.hpp" #include "util.hpp" NS_PROJ_START +class CPLJSonStreamingWriter; + namespace common { class UnitOfMeasure; using UnitOfMeasurePtr = std::shared_ptr<UnitOfMeasure>; @@ -490,7 +491,7 @@ class PROJ_GCC_DLL JSONFormatter { PROJ_PRIVATE : //! @cond Doxygen_Suppress - PROJ_INTERNAL CPLJSonStreamingWriter & + PROJ_INTERNAL CPLJSonStreamingWriter * writer() const; struct ObjectContext { |
