1 /*---------------------------------------------------------------------------* \
3 \\ / F ield | OpenFOAM: The Open Source CFD Toolbox
5 \\ / A nd | Copyright (C) 1991-2008 OpenCFD Ltd.
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
25 \*---------------------------------------------------------------------------*/
27 #include "IOPtrList.H"
29 // * * * * * * * * * * * * * * * Constructors * * * * * * * * * * * * * * * //
33 Foam::IOPtrList<T>::IOPtrList(const IOobject& io, const INew& inewt)
39 io.readOpt() == IOobject::MUST_READ
40 || (io.readOpt() == IOobject::READ_IF_PRESENT && headerOk())
43 PtrList<T>::read(readStream(typeName), inewt);
50 Foam::IOPtrList<T>::IOPtrList(const IOobject& io)
56 io.readOpt() == IOobject::MUST_READ
57 || (io.readOpt() == IOobject::READ_IF_PRESENT && headerOk())
60 PtrList<T>::read(readStream(typeName), INew<T>());
67 Foam::IOPtrList<T>::IOPtrList(const IOobject& io, const label s)
72 if (io.readOpt() != IOobject::NO_READ)
74 FatalErrorIn("IOPtrList<T>::IOPtrList(const IOobject&, const label)")
75 << "NO_READ must be set if specifying size" << nl
82 Foam::IOPtrList<T>::IOPtrList(const IOobject& io, const PtrList<T>& list)
88 io.readOpt() == IOobject::MUST_READ
89 || (io.readOpt() == IOobject::READ_IF_PRESENT && headerOk())
92 PtrList<T>::read(readStream(typeName), INew<T>());
97 PtrList<T>::operator=(list);
102 // * * * * * * * * * * * * * * * Destructor * * * * * * * * * * * * * * * * //
105 Foam::IOPtrList<T>::~IOPtrList()
109 // * * * * * * * * * * * * * * * Member Operators * * * * * * * * * * * * * //
112 void Foam::IOPtrList<T>::operator=(const IOPtrList<T>& rhs)
114 PtrList<T>::operator=(rhs);
119 bool Foam::IOPtrList<T>::writeData(Ostream& os) const
121 return (os << *this).good();
125 // ************************************************************************* //