Initial commit for version 2.0.x patch release
[OpenFOAM-2.0.x.git] / src / finiteVolume / fields / surfaceFields / slicedSurfaceFieldsFwd.H
blob1f39a6daac52120c8f003252e44860f6ee9b2c5b
1 /*---------------------------------------------------------------------------*\
2   =========                 |
3   \\      /  F ield         | OpenFOAM: The Open Source CFD Toolbox
4    \\    /   O peration     |
5     \\  /    A nd           | Copyright (C) 2004-2010 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
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 InClass
25     Foam::slicedSurfaceFields
27 \*---------------------------------------------------------------------------*/
29 #ifndef slicedSurfaceFieldsFwd_H
30 #define slicedSurfaceFieldsFwd_H
32 #include "fieldTypes.H"
34 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
36 namespace Foam
39 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
41 class surfaceMesh;
43 template<class Type>
44 class fvsPatchField;
46 template<class Type>
47 class slicedFvsPatchField;
49 template
51     class Type,
52     template<class> class PatchField,
53     template<class> class SlicedPatchField,
54     class GeoMesh
56 class SlicedGeometricField;
58 typedef
59 SlicedGeometricField<scalar, fvsPatchField, slicedFvsPatchField, surfaceMesh>
60     slicedSurfaceScalarField;
62 typedef
63 SlicedGeometricField<vector, fvsPatchField, slicedFvsPatchField, surfaceMesh>
64     slicedSurfaceVectorField;
66 typedef
67 SlicedGeometricField
69     sphericalTensor,
70     fvsPatchField,
71     slicedFvsPatchField,
72     surfaceMesh
74     slicedSurfaceSphericalTensorField;
76 typedef
77 SlicedGeometricField
79     symmTensor,
80     fvsPatchField,
81     slicedFvsPatchField,
82     surfaceMesh
84     slicedSurfaceSymmTensorField;
86 typedef
87 SlicedGeometricField<tensor, fvsPatchField, slicedFvsPatchField, surfaceMesh>
88     slicedSurfaceTensorField;
90 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
92 } // End namespace Foam
94 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
96 #endif
98 // ************************************************************************* //