1 /*---------------------------------------------------------------------------*\
3 \\ / F ield | OpenFOAM: The Open Source CFD Toolbox
5 \\ / A nd | Copyright held by original author
7 -------------------------------------------------------------------------------
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
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
27 \*---------------------------------------------------------------------------*/
29 #include "IOstreams.H"
31 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
36 // * * * * * * * * * * * * * * * * Constructors * * * * * * * * * * * * * * //
39 inline labelledTri::labelledTri()
45 //- Construct from components
46 inline labelledTri::labelledTri
59 inline labelledTri::labelledTri(Istream& is)
61 operator>>(is, *this);
65 // * * * * * * * * * * * * * * * Member Functions * * * * * * * * * * * * * //
67 inline label labelledTri::region() const
72 inline label& labelledTri::region()
78 // * * * * * * * * * * * * * * * Ostream Operator * * * * * * * * * * * * * //
80 inline Istream& operator>>(Istream& is, labelledTri& t)
82 if (is.format() == IOstream::ASCII)
84 // Read beginning of labelledTri point pair
85 is.readBegin("labelledTri");
87 is >> static_cast<triFace&>(t) >> t.region_;
89 // Read end of labelledTri point pair
90 is.readEnd("labelledTri");
94 is.read(reinterpret_cast<char*>(&t), sizeof(labelledTri));
97 // Check state of Ostream
98 is.check("Istream& operator>>(Istream&, labelledTri&)");
104 inline Ostream& operator<<(Ostream& os, const labelledTri& t)
106 if (os.format() == IOstream::ASCII)
108 os << token::BEGIN_LIST
109 << static_cast<const triFace&>(t) << token::SPACE << t.region_
116 reinterpret_cast<const char*>(&t),
121 // Check state of Ostream
122 os.check("Ostream& operator<<(Ostream&, const labelledTri&)");
129 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
131 } // End namespace Foam
133 // ************************************************************************* //