Transferred copyright to the OpenFOAM Foundation
[OpenFOAM-2.0.x.git] / etc / codeTemplates / template / _TemplateTemplateIO.C
blob456d28ba8e24b414f647340afffc8860c530e107
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 "CLASSNAME.H"
27 #include "IOstreams.H"
29 // * * * * * * * * * * * * * * * * Constructors  * * * * * * * * * * * * * * //
31 template<TemplateClassArgument>
32 Foam::CLASSNAME<TemplateArgument>::CLASSNAME(Istream& is)
34     base1(is),
35     base2(is),
36     member1(is),
37     member2(is)
39     // Check state of Istream
40     is.check("Foam::CLASSNAME<TemplateArgument>::CLASSNAME(Foam::Istream&)");
44 // * * * * * * * * * * * * * * * IOstream Operators  * * * * * * * * * * * * //
46 template<TemplateClassArgument>
47 Foam::Istream& Foam::operator>>
49     Istream& is,
50     CLASSNAME<TemplateArgument>&
53     // Check state of Istream
54     is.check
55     (
56         "Foam::Istream& Foam::operator>>"
57         "(Foam::Istream&, Foam::CLASSNAME<TemplateArgument>&)"
58     );
60     return is;
64 template<TemplateClassArgument>
65 Foam::Ostream& Foam::operator<<
67     Ostream& os,
68     const CLASSNAME<TemplateArgument>&
71     // Check state of Ostream
72     os.check
73     (
74         "Foam::Ostream& Foam::operator<<"
75         "(Ostream&, const CLASSNAME<TemplateArgument>&)"
76     );
78     return os;
82 // ************************************************************************* //