Remove trailing whitespace systematically
[foam-extend-3.2.git] / src / foam / primitives / direction / direction.H
blob14aca224954d2e2923ab8d5994a265e07f08864f
1 /*---------------------------------------------------------------------------*\
2   =========                 |
3   \\      /  F ield         | foam-extend: Open Source CFD
4    \\    /   O peration     |
5     \\  /    A nd           | For copyright notice see file Copyright
6      \\/     M anipulation  |
7 -------------------------------------------------------------------------------
8 License
9     This file is part of foam-extend.
11     foam-extend 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 3 of the License, or (at your
14     option) any later version.
16     foam-extend is distributed in the hope that it will be useful, but
17     WITHOUT ANY WARRANTY; without even the implied warranty of
18     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
19     General Public License for more details.
21     You should have received a copy of the GNU General Public License
22     along with foam-extend.  If not, see <http://www.gnu.org/licenses/>.
24 Primitive
25     direction
27 Description
28     Direction is an integer type used to represent the Cartesian directions
29     etc.  Due to the extension of block matrix with lots of components
30     this is upgraded to unsigned int.  Request by David Gaden, 25/Nov/2012
31     HJ, 31/May/2012
33 \*---------------------------------------------------------------------------*/
35 #ifndef direction_H
36 #define direction_H
38 #include "int.H"
40 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
42 namespace Foam
44 //     typedef unsigned char direction;
45     // HJ, 31/May/2012
46     typedef unsigned int direction;
49 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
51 #endif
53 // ************************************************************************* //