added new constructor - construct with given size
[OpenFOAM-1.5.x.git] / src / OpenFOAM / db / IOobjects / IOPtrList / IOPtrList.C
blob7fe98d1b3f7afb46a4d54d558fa4e6302979cb5b
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 label s)
69     regIOobject(io),
70     PtrList<T>(s)
72     if (io.readOpt() != IOobject::NO_READ)
73     {
74         FatalErrorIn("IOPtrList<T>::IOPtrList(const IOobject&, const label)")
75             << "NO_READ must be set if specifying size" << nl
76             << exit(FatalError);
77     }
81 template<class T>
82 Foam::IOPtrList<T>::IOPtrList(const IOobject& io, const PtrList<T>& list)
84     regIOobject(io)
86     if
87     (
88         io.readOpt() == IOobject::MUST_READ
89      || (io.readOpt() == IOobject::READ_IF_PRESENT && headerOk())
90     )
91     {
92         PtrList<T>::read(readStream(typeName), INew<T>());
93         close();
94     }
95     else
96     {
97         PtrList<T>::operator=(list);
98     }
102 // * * * * * * * * * * * * * * * Destructor  * * * * * * * * * * * * * * * * //
104 template<class T>
105 Foam::IOPtrList<T>::~IOPtrList()
109 // * * * * * * * * * * * * * * * Member Operators  * * * * * * * * * * * * * //
111 template<class T>
112 void Foam::IOPtrList<T>::operator=(const IOPtrList<T>& rhs)
114     PtrList<T>::operator=(rhs);
118 template<class T>
119 bool Foam::IOPtrList<T>::writeData(Ostream& os) const
121     return (os << *this).good();
125 // ************************************************************************* //