initial commit for version 1.5.x patch release
[OpenFOAM-1.5.x.git] / src / OpenFOAM / meshes / polyMesh / mapPolyMesh / objectMap / objectMap.H
blobf7500ccecf1c25fa4fb0ce69b3bace452b3427a5
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 Class
26     Foam::objectMap
28 Description
29     An objectMap is a pair of labels defining the mapping of an object from
30     another object, e.g. a cell mapped from a point.
32 SourceFiles
33     objectMapI.H
35 \*---------------------------------------------------------------------------*/
37 #ifndef objectMap_H
38 #define objectMap_H
40 #include "labelList.H"
42 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
44 namespace Foam
47 // Forward declaration of friend functions and operators
49 class objectMap;
50 inline bool operator==(const objectMap& a, const objectMap& b);
51 inline bool operator!=(const objectMap& a, const objectMap& b);
52 inline Ostream& operator<<(Ostream&, const objectMap&);
55 /*---------------------------------------------------------------------------*\
56                            Class objectMap Declaration
57 \*---------------------------------------------------------------------------*/
59 class objectMap
61     // Private data
63         //- Object index
64         label index_;
66         //- Master object index
67         labelList masterObjects_;
70 public:
72     // Constructors
74         //- Null constructor for lists
75         inline objectMap();
77         //- Construct from components
78         inline objectMap(const label index, const labelList& master);
80         //- Construct from Istream
81         inline objectMap(Istream&);
84     // Member Functions
86         //- Return object index
87         inline label& index();
88         inline label index() const;
90         //- Return master object index
91         inline labelList& masterObjects();
92         inline const labelList& masterObjects() const;
95     // Friend Operators
97         friend bool operator==(const objectMap& a, const objectMap& b);
98         friend bool operator!=(const objectMap& a, const objectMap& b);
101     // IOstream Operators
103         friend Ostream& operator<<(Ostream&, const objectMap&);
107 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
109 } // End namespace Foam
111 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
113 #include "objectMapI.H"
115 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
117 #endif
119 // ************************************************************************* //