BUG: UListIO: byteSize overflowing on really big faceLists
[OpenFOAM-2.0.x.git] / src / meshTools / octree / treeElem.H
blob6f205348b9a12eef65cce1c4da417ee1b7f1d511
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::treeElem
27 Description
28     Common functionality of treeNode and treeLeaf.
30 SourceFiles
31     treeElem.C
33 \*---------------------------------------------------------------------------*/
35 #ifndef treeElem_H
36 #define treeElem_H
38 #include "treeBoundBox.H"
40 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
42 namespace Foam
45 /*---------------------------------------------------------------------------*\
46                            Class treeElem Declaration
47 \*---------------------------------------------------------------------------*/
49 template <class Type>
50 class treeElem
52     // Private data
54         //- Bounding box of this node
55         treeBoundBox bb_;
57 public:
59     // Constructors
61         //- Construct from bounding box
62         treeElem(const treeBoundBox& bb)
63         :
64             bb_(bb)
65         {}
68     // Member Functions
70         // Access
72             //- Bounding box of this node
73             const treeBoundBox& bb() const
74             {
75                 return bb_;
76             }
78             //- Bounding box of this node
79             treeBoundBox& bb()
80             {
81                 return bb_;
82             }
86 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
88 } // End namespace Foam
91 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
93 #endif
95 // ************************************************************************* //