27ab0bbb5aa3c06ae527663c1dee1e078cf04aa5
[OpenFOAM-1.5.x.git] / src / OpenFOAM / db / IOobjects / IOPtrList / IOPtrList.H
blob27ab0bbb5aa3c06ae527663c1dee1e078cf04aa5
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 Class
26     Foam::IOPtrList
28 Description
29     A PtrList of objects of type \<T\> with automated input and output.
31 SourceFiles
32     IOPtrList.C
34 \*---------------------------------------------------------------------------*/
36 #ifndef IOPtrList_H
37 #define IOPtrList_H
39 #include "PtrList.H"
40 #include "regIOobject.H"
42 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
44 namespace Foam
47 /*---------------------------------------------------------------------------*\
48                            Class IOPtrList Declaration
49 \*---------------------------------------------------------------------------*/
51 template<class T>
52 class IOPtrList
54     public regIOobject,
55     public PtrList<T>
58 public:
60     //- Runtime type information
61     TypeName("PtrList");
64     // Constructors
66         //- Construct from IOobject using given Istream constructor class
67         template<class INew>
68         IOPtrList(const IOobject&, const INew&);
70         //- Construct from IOobject
71         IOPtrList(const IOobject&);
73         //- Construct from IOobject and a PtrList
74         IOPtrList(const IOobject&, const PtrList<T>&);
77     // Destructor
79         virtual ~IOPtrList();
82     // Member functions
84         bool writeData(Ostream&) const;
87     // Member operators
89         void operator=(const IOPtrList<T>&);
93 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
95 } // End namespace Foam
97 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
99 #ifdef NoRepository
100 #   include "IOPtrList.C"
101 #endif
103 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
105 #endif
107 // ************************************************************************* //