File wkt.h
Go to the documentation of this file
// Copyright (c) 2012-2013, IGN France.
// Copyright (c) 2012-2022, Oslandia.
// SPDX-License-Identifier: LGPL-2.0-or-later
#ifndef _SFCGAL_IO_WKT_H_
#define _SFCGAL_IO_WKT_H_
#include "SFCGAL/config.h"
#include <memory>
#include <sstream>
#include <string>
namespace SFCGAL {
class Geometry;
}
namespace SFCGAL {
namespace io {
SFCGAL_API std::unique_ptr<Geometry>
readWkt(std::istream &s);
SFCGAL_API std::unique_ptr<Geometry>
readWkt(const std::string &s);
SFCGAL_API std::unique_ptr<Geometry>
readWkt(const char *, size_t);
} // namespace io
} // namespace SFCGAL
#endif