Adding cfMesh-v1.0 into the repository
[foam-extend-3.2.git] / src / meshLibrary / utilities / containers / graphRow / graphRow.H
blob6b906901a5f6d45a52525d05a7eb8a512e14eaa1
1 /*---------------------------------------------------------------------------*\
2   =========                 |
3   \\      /  F ield         | cfMesh: A library for mesh generation
4    \\    /   O peration     |
5     \\  /    A nd           | Author: Franjo Juretic (franjo.juretic@c-fields.com)
6      \\/     M anipulation  | Copyright (C) Creative Fields, Ltd.
7 -------------------------------------------------------------------------------
8 License
9     This file is part of cfMesh.
11     cfMesh 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     cfMesh 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 cfMesh.  If not, see <http://www.gnu.org/licenses/>.
24 Class
25     graphRow
27 Description
28     This class provides access to a row of a graph
30 SourceFiles
31     graphRowI.H
33 \*---------------------------------------------------------------------------*/
35 #ifndef graphRow_H
36 #define graphRow_H
38 #include "bool.H"
39 #include "Ostream.H"
40 #include "error.H"
42 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
44 namespace Foam
46     
47 class VRWGraph;
49 template<class graphType> class graphRow;
50 template<class graphType>
51 Ostream& operator<<(Ostream&, const graphRow<graphType>&);
53 /*---------------------------------------------------------------------------*\
54                            Class graphRow Declaration
55 \*---------------------------------------------------------------------------*/
57 template<class graphType>
58 class graphRow
60     // Private data
61         //- reference to the graph
62         graphType& data_;
63     
64         //- row number
65         const label rowI_;
67     // Private member functions
68         //- check index
69         inline void checkIndex(const label i) const;
70     
71 public:
73     // Constructors
75         //- Construct from graph and row number
76         inline graphRow(graphType&, const label);
78         //- Copy contructor
79         inline graphRow(const graphRow<graphType>&);
81     // Destructor
83         inline ~graphRow();
85     // Member Functions
87         //- Returns the number of rows
88         inline label size() const;
90         //- Reset the number of rows
91         inline void setSize(const label size);
93         //- Clear the graph
94         inline void clear();
96     // Member Operators
97         
98         //- Append an element to the given row
99         inline void append(const label);
100         
101         //- Append an element to the given row if it does not exist there
102         inline void appendIfNotIn(const label);
103         
104         //- check if the element is in the given row (takes linear time)
105         inline bool contains(const label e) const;
106         inline label containsAtPosition(const label e) const;
107         
108         //- set and get operators
109         inline label operator[](const label) const;
110         inline label& operator[](const label);
111         
112         //- Assignment operator
113         inline void operator=(const graphRow<graphType>&);
114         template<class listType>
115         inline void operator=(const listType&);
117     // IOstream operators
119         // Write graphRow to Ostream.
120         friend Ostream& operator<< <graphType>
121         (
122             Ostream&,
123             const graphRow<graphType>&
124         );
126         //- Read from Istream, discarding contents of existing graphRow.
127 /*        friend Istream& operator>> <T, width>
128         (
129             Istream&,
130             graphRow<T, width>&
131         );
135 typedef const graphRow<const VRWGraph> constRow;
136 typedef graphRow<VRWGraph> row;
139 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
141 } // End namespace Foam
143 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
145 #include "graphRowI.H"
147 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
149 #endif
151 // ************************************************************************* //