intersection with triangle plane for miss
[OpenFOAM-1.5.x.git] / src / OpenFOAM / primitives / bool / bool.H
blob653555f9255d4a5e23346f9fcb7d193bdcf42b14
1 /*---------------------------------------------------------------------------*\
2   =========                 |
3   \\      /  F ield         | OpenFOAM: The Open Source CFD Toolbox
4    \\    /   O peration     |
5     \\  /    A nd           | Copyright (C) 1991-2008 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 Primitive
26     bool
28 Description
29     C++ 4.0 supports a builtin type bool but older compilers do not.
30     This is a simple typedef to emulate the standard bool type.
32 SourceFiles
33     boolIO.C
35 \*---------------------------------------------------------------------------*/
37 #ifndef bool_H
38 #define bool_H
40 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
42 namespace Foam
45 class Istream;
46 class Ostream;
48 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
50 Istream& operator>>(Istream&, bool&);
51 Ostream& operator<<(Ostream&, const bool);
53 bool readBool(Istream& is);
55 } // End namespace Foam
58 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
60 #include "pTraits.H"
62 namespace Foam
65 // template specialisation for pTraits<bool>
66 template<>
67 class pTraits<bool>
69     bool p_;
71 public:
73     //- Component type
74     typedef bool cmptType;
76     // Member constants
78         enum
79         {
80             dim = 3,         // Dimensionality of space
81             rank = 0,        // Rank od bool is 0
82             nComponents = 1  // Number of components in bool is 1
83         };
85     // Static data members
87         static const char* const typeName;
88         static const char* componentNames[];
89         static const bool zero;
90         static const bool one;
92     // Constructors
94         //- Construct from Istream
95         pTraits(Istream& is);
97     // Member Functions
99         operator bool() const
100         {
101             return p_;
102         }
106 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
108 } // End namespace Foam
110 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
112 #endif
114 // ************************************************************************* //