mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-11-28 03:28:01 +00:00
145 lines
3.6 KiB
C++
145 lines
3.6 KiB
C++
/*---------------------------------------------------------------------------*\
|
|
========= |
|
|
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
|
|
\\ / O peration |
|
|
\\ / A nd | Copyright (C) 1991-2009 OpenCFD Ltd.
|
|
\\/ M anipulation |
|
|
-------------------------------------------------------------------------------
|
|
License
|
|
This file is part of OpenFOAM.
|
|
|
|
OpenFOAM is free software; you can redistribute it and/or modify it
|
|
under the terms of the GNU General Public License as published by the
|
|
Free Software Foundation; either version 2 of the License, or (at your
|
|
option) any later version.
|
|
|
|
OpenFOAM is distributed in the hope that it will be useful, but WITHOUT
|
|
ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
|
FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
|
for more details.
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
along with OpenFOAM; if not, write to the Free Software Foundation,
|
|
Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
|
|
|
Class
|
|
Foam::OStringStream
|
|
|
|
Description
|
|
Output to memory buffer stream.
|
|
|
|
SourceFiles
|
|
Mprint.C
|
|
|
|
\*---------------------------------------------------------------------------*/
|
|
|
|
#ifndef OStringStream_H
|
|
#define OStringStream_H
|
|
|
|
#include "OSstream.H"
|
|
|
|
#include <sstream>
|
|
|
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
|
|
|
namespace Foam
|
|
{
|
|
|
|
/*---------------------------------------------------------------------------*\
|
|
Class OStringStream Declaration
|
|
\*---------------------------------------------------------------------------*/
|
|
|
|
class OStringStream
|
|
:
|
|
public OSstream
|
|
{
|
|
|
|
public:
|
|
|
|
// Constructors
|
|
|
|
//- Set stream status
|
|
OStringStream
|
|
(
|
|
streamFormat format=ASCII,
|
|
versionNumber version=currentVersion
|
|
)
|
|
:
|
|
OSstream
|
|
(
|
|
*(new std::ostringstream()),
|
|
"OStringStream.sinkFile",
|
|
format,
|
|
version
|
|
)
|
|
{}
|
|
|
|
//- Construct as copy
|
|
OStringStream(const OStringStream& oss)
|
|
:
|
|
OSstream
|
|
(
|
|
*(
|
|
new std::ostringstream
|
|
(
|
|
dynamic_cast<const std::ostringstream&>
|
|
(
|
|
oss.stream()
|
|
).str()
|
|
)
|
|
),
|
|
oss.name(),
|
|
oss.format(),
|
|
oss.version()
|
|
)
|
|
{}
|
|
|
|
|
|
// Destructor
|
|
|
|
~OStringStream()
|
|
{
|
|
delete &dynamic_cast<std::ostringstream&>(stream());
|
|
}
|
|
|
|
|
|
// Member functions
|
|
|
|
// Access
|
|
|
|
string str() const
|
|
{
|
|
return dynamic_cast<const std::ostringstream&>(stream()).str();
|
|
}
|
|
|
|
|
|
// Edit
|
|
|
|
//- Clear the OStringStream
|
|
void rewind()
|
|
{
|
|
# if __GNUC__ < 4 && __GNUC_MINOR__ < 4
|
|
stream().rdbuf()->pubsetbuf(" ", 1);
|
|
# else
|
|
stream().rdbuf()->pubseekpos(0);
|
|
# endif
|
|
}
|
|
|
|
|
|
// Print
|
|
|
|
//- Print description OM IOstream to Ostream
|
|
void print(Ostream&) const;
|
|
};
|
|
|
|
|
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
|
|
|
} // End namespace Foam
|
|
|
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
|
|
|
#endif
|
|
|
|
// ************************************************************************* //
|