47 lines
992 B
C++
47 lines
992 B
C++
/**********************************************************************
|
|
*
|
|
* GEOS - Geometry Engine Open Source
|
|
* http://geos.osgeo.org
|
|
*
|
|
* Copyright (C) 2020 Martin Davis
|
|
*
|
|
* This is free software; you can redistribute and/or modify it under
|
|
* the terms of the GNU Lesser General Public Licence as published
|
|
* by the Free Software Foundation.
|
|
* See the COPYING file for more information.
|
|
*
|
|
**********************************************************************/
|
|
|
|
#pragma once
|
|
|
|
#include <geos/geom/GeometryFactory.h>
|
|
#include <geos/io/WKTReader.h>
|
|
#include <geos/export.h>
|
|
|
|
// Forward declarations
|
|
namespace geos {
|
|
namespace geom {
|
|
|
|
class Geometry;
|
|
class PrecisionModel;
|
|
}
|
|
}
|
|
|
|
namespace geos {
|
|
namespace io {
|
|
|
|
class GEOS_DLL WKTFileReader {
|
|
|
|
public:
|
|
WKTFileReader();
|
|
~WKTFileReader();
|
|
|
|
std::vector<std::unique_ptr<geom::Geometry>> read(std::string fname);
|
|
|
|
private:
|
|
std::unique_ptr<geos::geom::Geometry> readGeom(std::ifstream& f, geos::io::WKTReader& rdr);
|
|
};
|
|
|
|
}
|
|
}
|