Merge branch 'master' of ssh://git.code.sf.net/p/foam-extend/foam-extend-3.2
[foam-extend-3.2.git] / src / foam / db / IOstreams / Sstreams / ISstreamI.H
blob504f888620d5f28e91f5855a7d041ece9e5e8939
1 /*---------------------------------------------------------------------------*\
2   =========                 |
3   \\      /  F ield         | foam-extend: Open Source CFD
4    \\    /   O peration     | Version:     3.2
5     \\  /    A nd           | Web:         http://www.foam-extend.org
6      \\/     M anipulation  | For copyright notice see file Copyright
7 -------------------------------------------------------------------------------
8 License
9     This file is part of foam-extend.
11     foam-extend is free software: you can redistribute it and/or modify it
12     under the terms of the GNU General Public License as published by the
13     Free Software Foundation, either version 3 of the License, or (at your
14     option) any later version.
16     foam-extend is distributed in the hope that it will be useful, but
17     WITHOUT ANY WARRANTY; without even the implied warranty of
18     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
19     General Public License for more details.
21     You should have received a copy of the GNU General Public License
22     along with foam-extend.  If not, see <http://www.gnu.org/licenses/>.
24 \*---------------------------------------------------------------------------*/
26 #include "ISstream.H"
28 // * * * * * * * * * * * * * * * * Constructors  * * * * * * * * * * * * * * //
30 inline Foam::ISstream::ISstream
32     istream& is,
33     const string& name,
34     streamFormat format,
35     versionNumber version,
36     compressionType compression
39     Istream(format, version, compression),
40     name_(name),
41     is_(is)
43     if (is_.good())
44     {
45         setOpened();
46         setGood();
47     }
48     else
49     {
50         setState(is_.rdstate());
51     }
55 // * * * * * * * * * * * * * * Member Functions  * * * * * * * * * * * * * * //
57 inline Foam::ISstream& Foam::ISstream::get(char& c)
59     is_.get(c);
60     setState(is_.rdstate());
62     if (c == '\n')
63     {
64         lineNumber_++;
65     }
67     return *this;
71 inline Foam::ISstream& Foam::ISstream::getLine(string& s)
73     getline(is_, s);
74     setState(is_.rdstate());
75     lineNumber_++;
77     return *this;
81 inline Foam::ISstream& Foam::ISstream::putback(const char& c)
83     if (c == '\n')
84     {
85         lineNumber_--;
86     }
88     if (!is_.putback(c))
89     {
90         setBad();
91     }
93     setState(is_.rdstate());
95     return *this;
99 // ************************************************************************* //