Retrofitted functionality from our development line to improve error and warning
[OpenFOAM-1.6.x.git] / src / OpenFOAM / db / dictionary / dictionaryEntry / dictionaryEntryIO.C
blob489395e43a72dea2f3270e9475169853b8876aea
1 /*---------------------------------------------------------------------------*\
2   =========                 |
3   \\      /  F ield         | OpenFOAM: The Open Source CFD Toolbox
4    \\    /   O peration     |
5     \\  /    A nd           | Copyright (C) 1991-2009 OpenCFD Ltd.
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 the
13     Free Software Foundation; either version 2 of the License, or (at your
14     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, write to the Free Software Foundation,
23     Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
25 Description
26     DictionaryEntry constructor from Istream and Ostream output operator.
28 \*---------------------------------------------------------------------------*/
30 #include "keyType.H"
31 #include "dictionaryEntry.H"
32 #include "IOstreams.H"
34 // * * * * * * * * * * * * * * * * Constructors  * * * * * * * * * * * * * * //
36 Foam::dictionaryEntry::dictionaryEntry
38     const dictionary& parentDict,
39     Istream& is
42     entry(keyType(is)),
43     dictionary(parentDict, is)
45     is.fatalCheck
46     (
47         "dictionaryEntry::dictionaryEntry"
48         "(const dictionary& parentDict, Istream&)"
49     );
53 Foam::dictionaryEntry::dictionaryEntry
55     const keyType& key,
56     const dictionary& parentDict,
57     Istream& is
60     entry(key),
61     dictionary(key, parentDict, is)
63     is.fatalCheck
64     (
65         "dictionaryEntry::dictionaryEntry"
66         "(const keyType&, const dictionary& parentDict, Istream&)"
67     );
71 // * * * * * * * * * * * * * * * Member Functions  * * * * * * * * * * * * * //
73 void Foam::dictionaryEntry::write(Ostream& os) const
75     // write keyword with indent but without trailing spaces
76     os.indent();
77     os.write(keyword());
78     dictionary::write(os);
82 // * * * * * * * * * * * * * Ostream operator  * * * * * * * * * * * * * * * //
84 Foam::Ostream& Foam::operator<<(Ostream& os, const dictionaryEntry& de)
86     de.write(os);
87     return os;
91 #if defined (__GNUC__)
92 template<>
93 #endif
94 Foam::Ostream& Foam::operator<<
96     Ostream& os,
97     const InfoProxy<dictionaryEntry>& ip
100     const dictionaryEntry& e = ip.t_;
102     os  << "    dictionaryEntry '" << e.keyword() << "'" << endl;
104     return os;
108 // ************************************************************************* //