ENH: autoLayerDriver: better layering information message
[OpenFOAM-2.0.x.git] / src / OpenFOAM / primitives / strings / string / stringIO.C
blobab76e7135d94d09c6e519d8f8d8eaf6f53a6e8fa
1 /*---------------------------------------------------------------------------*\
2   =========                 |
3   \\      /  F ield         | OpenFOAM: The Open Source CFD Toolbox
4    \\    /   O peration     |
5     \\  /    A nd           | Copyright (C) 2011 OpenFOAM Foundation
6      \\/     M anipulation  |
7 -------------------------------------------------------------------------------
8 License
9     This file is part of OpenFOAM.
11     OpenFOAM is free software: you can redistribute it and/or modify it
12     under the terms of the GNU General Public License as published by
13     the Free Software Foundation, either version 3 of the License, or
14     (at your option) any later version.
16     OpenFOAM is distributed in the hope that it will be useful, but WITHOUT
17     ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
18     FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
19     for more details.
21     You should have received a copy of the GNU General Public License
22     along with OpenFOAM.  If not, see <http://www.gnu.org/licenses/>.
24 \*---------------------------------------------------------------------------*/
26 #include "string.H"
27 #include "IOstreams.H"
29 // * * * * * * * * * * * * * * * * Constructors  * * * * * * * * * * * * * * //
31 Foam::string::string(Istream& is)
33     is >> *this;
37 // * * * * * * * * * * * * * * * IOstream Operators  * * * * * * * * * * * * //
39 Foam::Istream& Foam::operator>>(Istream& is, string& s)
41     token t(is);
43     if (!t.good())
44     {
45         is.setBad();
46         return is;
47     }
49     if (t.isString())
50     {
51         s = t.stringToken();
52     }
53     else
54     {
55         is.setBad();
56         FatalIOErrorIn("operator>>(Istream&, string&)", is)
57             << "wrong token type - expected string, found " << t.info()
58             << exit(FatalIOError);
60         return is;
61     }
63     // Check state of Istream
64     is.check("Istream& operator>>(Istream&, string&)");
66     return is;
70 Foam::Ostream& Foam::operator<<(Ostream& os, const string& s)
72     os.write(s);
73     os.check("Ostream& operator<<(Ostream&, const string&)");
74     return os;
78 Foam::Ostream& Foam::operator<<(Ostream& os, const std::string& s)
80     os.write(string(s));
81     os.check("Ostream& operator<<(Ostream&, const std::string&)");
82     return os;
86 // ************************************************************************* //