DYT/Tool/OpenSceneGraph-3.6.5/include/geos/io/Writer.h
2024-12-25 07:49:36 +08:00

52 lines
1.2 KiB
C++

/**********************************************************************
*
* GEOS - Geometry Engine Open Source
* http://geos.osgeo.org
*
* Copyright (C) 2005-2006 Refractions Research Inc.
* Copyright (C) 2001-2002 Vivid Solutions Inc.
*
* 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.
*
**********************************************************************
*
* Last port: ORIGINAL WORK to be used like java.io.Writer
*
**********************************************************************/
#pragma once
#include <geos/export.h>
#include <string>
#ifdef _MSC_VER
#pragma warning(push)
#pragma warning(disable: 4251) // warning C4251: needs to have dll-interface to be used by clients of class
#endif
namespace geos {
namespace io {
class GEOS_DLL Writer {
public:
Writer();
void reserve(std::size_t capacity);
~Writer() = default;
void write(const std::string& txt);
const std::string& toString();
private:
std::string str;
};
} // namespace geos::io
} // namespace geos
#ifdef _MSC_VER
#pragma warning(pop)
#endif