Initial commit for version 2.0.x patch release
[OpenFOAM-2.0.x.git] / src / lagrangian / basic / InteractionLists / referredWallFace / referredWallFace.H
blob4806be711f5a8d1b1a024458aaf6b13029cc660c
1 /*---------------------------------------------------------------------------*\
2   =========                 |
3   \\      /  F ield         | OpenFOAM: The Open Source CFD Toolbox
4    \\    /   O peration     |
5     \\  /    A nd           | Copyright (C) 2010-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 Class
25     Foam::referredWallFace
27 Description
28     Storage for referred wall faces.  Stores patch index, face and
29     associated points
31 SourceFiles
32     referredWallFaceI.H
33     referredWallFace.C
35 \*---------------------------------------------------------------------------*/
37 #ifndef referredWallFace_H
38 #define referredWallFace_H
40 #include "face.H"
41 #include "pointField.H"
43 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
45 namespace Foam
48 // Forward declaration of classes
49 class Istream;
50 class Ostream;
52 // Forward declaration of friend functions and operators
53 class referredWallFace;
54 Istream& operator>>(Istream&, referredWallFace&);
55 Ostream& operator<<(Ostream&, const referredWallFace&);
58 /*---------------------------------------------------------------------------*\
59                         Class referredWallFace Declaration
60 \*---------------------------------------------------------------------------*/
62 class referredWallFace
64     public face
66     // Private data
68         //- Points of face
69         pointField pts_;
71         //- Index of originating patch
72         label patchI_;
75 public:
77     // Constructors
79         //- Construct null
80         referredWallFace();
82         //- Construct from components
83         referredWallFace
84         (
85             const face& f,
86             const pointField& pts,
87             label patchI
88         );
90         //- Construct as copy
91         referredWallFace(const referredWallFace&);
94     //- Destructor
95     ~referredWallFace();
98     // Member Functions
100         // Access
102             //- Return access to the stored points
103             inline const pointField& points() const;
105             //- Return non-const access to the stored points
106             inline pointField& points();
108             //- Return access to the patch index
109             inline label patchIndex() const;
111             //- Return non-const access to the patch index
112             inline label& patchIndex();
115     // Member Operators
117         bool operator==(const referredWallFace&) const;
118         bool operator!=(const referredWallFace&) const;
120     // IOstream Operators
122         friend Istream& operator>>(Istream&, referredWallFace&);
123         friend Ostream& operator<<(Ostream&, const referredWallFace&);
127 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
129 } // End namespace Foam
131 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
133 #include "referredWallFaceI.H"
135 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
137 #endif
139 // ************************************************************************* //