d42634dae60aba7128153faa39b0b7671e8d6efc
[OpenFOAM-1.5.x.git] / src / OpenFOAM / db / IOobjects / IOPtrList / IOPtrList.C
blobd42634dae60aba7128153faa39b0b7671e8d6efc
1 /*---------------------------------------------------------------------------* \
2   =========                 |
3   \\      /  F ield         | OpenFOAM: The Open Source CFD Toolbox
4    \\    /   O peration     |
5     \\  /    A nd           | Copyright (C) 1991-2008 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 \*---------------------------------------------------------------------------*/
27 #include "IOPtrList.H"
29 // * * * * * * * * * * * * * * * Constructors  * * * * * * * * * * * * * * * //
31 template<class T>
32 template<class INew>
33 Foam::IOPtrList<T>::IOPtrList(const IOobject& io, const INew& inewt)
35     regIOobject(io)
37     if
38     (
39         io.readOpt() == IOobject::MUST_READ
40      || (io.readOpt() == IOobject::READ_IF_PRESENT && headerOk())
41     )
42     {
43         PtrList<T>::read(readStream(typeName), inewt);
44         close();
45     }
49 template<class T>
50 Foam::IOPtrList<T>::IOPtrList(const IOobject& io)
52     regIOobject(io)
54     if
55     (
56         io.readOpt() == IOobject::MUST_READ
57      || (io.readOpt() == IOobject::READ_IF_PRESENT && headerOk())
58     )
59     {
60         PtrList<T>::read(readStream(typeName), INew<T>());
61         close();
62     }
66 template<class T>
67 Foam::IOPtrList<T>::IOPtrList(const IOobject& io, const PtrList<T>& list)
69     regIOobject(io)
71     if
72     (
73         io.readOpt() == IOobject::MUST_READ
74      || (io.readOpt() == IOobject::READ_IF_PRESENT && headerOk())
75     )
76     {
77         PtrList<T>::read(readStream(typeName), INew<T>());
78         close();
79     }
80     else
81     {
82         PtrList<T>::operator=(list);
83     }
87 // * * * * * * * * * * * * * * * Destructor  * * * * * * * * * * * * * * * * //
89 template<class T>
90 Foam::IOPtrList<T>::~IOPtrList()
94 // * * * * * * * * * * * * * * * Member Operators  * * * * * * * * * * * * * //
96 template<class T>
97 void Foam::IOPtrList<T>::operator=(const IOPtrList<T>& rhs)
99     PtrList<T>::operator=(rhs);
103 template<class T>
104 bool Foam::IOPtrList<T>::writeData(Ostream& os) const
106     return (os << *this).good();
110 // ************************************************************************* //