ENH: autoLayerDriver: better layering information message
[OpenFOAM-2.0.x.git] / src / OpenFOAM / db / IOobjects / IOPtrList / IOPtrList.H
blob5267f38a2084c7a1fd045837806d848f068a449f
1 /*---------------------------------------------------------------------------*\
2   =========                 |
3   \\      /  F ield         | OpenFOAM: The Open Source CFD Toolbox
4    \\    /   O peration     |
5     \\  /    A nd           | Copyright (C) 2011 OpenFOAM Foundation
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
13     the Free Software Foundation, either version 3 of the License, or
14     (at your 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, see <http://www.gnu.org/licenses/>.
24 Class
25     Foam::IOPtrList
27 Description
28     A PtrList of objects of type \<T\> with automated input and output.
30 SourceFiles
31     IOPtrList.C
33 \*---------------------------------------------------------------------------*/
35 #ifndef IOPtrList_H
36 #define IOPtrList_H
38 #include "PtrList.H"
39 #include "regIOobject.H"
41 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
43 namespace Foam
46 /*---------------------------------------------------------------------------*\
47                            Class IOPtrList Declaration
48 \*---------------------------------------------------------------------------*/
50 template<class T>
51 class IOPtrList
53     public regIOobject,
54     public PtrList<T>
57 public:
59     //- Runtime type information
60     TypeName("PtrList");
63     // Constructors
65         //- Construct from IOobject using given Istream constructor class
66         template<class INew>
67         IOPtrList(const IOobject&, const INew&);
69         //- Construct from IOobject
70         IOPtrList(const IOobject&);
72         //- Construct from IOobject with given size
73         IOPtrList(const IOobject&, const label);
75         //- Construct from IOobject and a PtrList
76         IOPtrList(const IOobject&, const PtrList<T>&);
78         //- Construct by transferring the PtrList contents
79         IOPtrList(const IOobject&, const Xfer<PtrList<T> >&);
82     //- Destructor
83     virtual ~IOPtrList();
86     // Member functions
88         bool writeData(Ostream&) const;
91     // Member operators
93         void operator=(const IOPtrList<T>&);
97 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
99 } // End namespace Foam
101 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
103 #ifdef NoRepository
104 #   include "IOPtrList.C"
105 #endif
107 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
109 #endif
111 // ************************************************************************* //