initial commit for version 1.6.x patch release
[OpenFOAM-1.6.x.git] / src / OpenFOAM / meshes / MeshObject / MeshObject.H
blobf53aab851d2f7d841316ceada040f051fc48addd
1 /*---------------------------------------------------------------------------*\
2   =========                 |
3   \\      /  F ield         | OpenFOAM: The Open Source CFD Toolbox
4    \\    /   O peration     |
5     \\  /    A nd           | Copyright (C) 1991-2009 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::MeshObject
28 Description
29     Templated abstract base-class for dynamic mesh objects used to automate
30     their allocation to the mesh database and the mesh-modifier event-loop.
32 SourceFiles
33     MeshObject.C
35 \*---------------------------------------------------------------------------*/
37 #ifndef MeshObject_H
38 #define MeshObject_H
40 #include "regIOobject.H"
42 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
44 namespace Foam
47 /*---------------------------------------------------------------------------*\
48                            Class MeshObject Declaration
49 \*---------------------------------------------------------------------------*/
52 template<class Mesh, class Type>
53 class MeshObject
55     public regIOobject
58 protected:
60         // Reference to Mesh
61         const Mesh& mesh_;
64 public:
66     // Constructors
68         explicit MeshObject(const Mesh& mesh);
70         static const Type& New(const Mesh& mesh);
72         template<class Data1>
73         static const Type& New
74         (
75             const Mesh& mesh,
76             const Data1& d
77         );
79         template<class Data1, class Data2>
80         static const Type& New
81         (
82             const Mesh& mesh,
83             const Data1&,
84             const Data2&
85         );
87         template<class Data1, class Data2, class Data3>
88         static const Type& New
89         (
90             const Mesh& mesh,
91             const Data1&,
92             const Data2&,
93             const Data3&
94         );
96         template<class Data1, class Data2, class Data3, class Data4>
97         static const Type& New
98         (
99             const Mesh& mesh,
100             const Data1&,
101             const Data2&,
102             const Data3&,
103             const Data4&
104         );
107     // Destructors
109         virtual ~MeshObject();
111         static bool Delete(const Mesh& mesh);
114     // Member Functions
116         const Mesh& mesh() const
117         {
118             return mesh_;
119         }
121         virtual bool writeData(Foam::Ostream&) const
122         {
123             return true;
124         }
128 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
130 } // End namespace Foam
132 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
134 #ifdef NoRepository
135 #   include "MeshObject.C"
136 #endif
138 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
140 #endif
142 // ************************************************************************* //