Adding cfMesh-v1.0 into the repository
[foam-extend-3.2.git] / src / meshLibrary / utilities / containers / VRWGraphList / VRWGraphList.H
blobc8f2cb94bda7c39b6a32aa26a2d47a0885b8f98d
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     VRWGraphList
27 Description
28     This class is an implementation of a list of graphs
29     with variable column width. The implementation is memory efficient.
31 SourceFiles
32     VRWGraphListI.H
33     VRWGraphList.C
35 \*---------------------------------------------------------------------------*/
37 #ifndef VRWGraphList_H
38 #define VRWGraphList_H
40 #include "VRWGraph.H"
41 #include "subGraph.H"
43 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
45 namespace Foam
48 /*---------------------------------------------------------------------------*\
49                            Class VRWGraphList Declaration
50 \*---------------------------------------------------------------------------*/
52 class VRWGraphList
54         
55     // Private data
56         //- graph containing the data
57         VRWGraph data_;
58     
59         //- number of rows
60         LongList<rowElement> rows_;
62     // Private member functions
63         //- check index
64         inline void checkIndex
65         (
66             const label i,
67             const label j,
68             const label k
69         ) const;
70     
71 public:
73     // Constructors
75         //- Construct null
76         inline VRWGraphList();
78         //- Copy contructor
79         inline VRWGraphList(const VRWGraphList&);
81     // Destructor
83         inline ~VRWGraphList();
85     // Member Functions
87         // Access
89             //- Returns the number of graphs
90             inline label size() const;
91             
92             //- Returns the number of rows in the graph at that position
93             inline label sizeOfGraph(const label posI) const;
94             
95             //- Return the number of element in the row at the given position
96             inline label sizeOfRow(const label posI, const label rowI) const;
98             //- Clear the graph
99             inline void clear();
101     // Member Operators
103         //- Append a graph at the end of the graphList
104         template<class GraphType>
105         inline void appendGraph(const GraphType& l);
106         
107         //- get and set operators
108         inline label operator()
109         (
110             const label i,
111             const label j,
112             const label k
113         ) const;
114         
115         inline label& operator()(const label i, const label j, const label k);
116         
117         inline const subGraph<const VRWGraph> operator[](const label i) const;
118         
119         //- Assignment operator
120         inline void operator=(const VRWGraphList&);
123     // IOstream operators
125         // Write VRWGraphList to Ostream.
126         friend Ostream& operator<<(Ostream&, const VRWGraphList&);
128         //- Read from Istream, discarding contents of existing VRWGraphList.
129 /*        friend Istream& operator>> <T, width>
130         (
131             Istream&,
132             VRWGraphList<T, width>&
133         );
138 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
140 } // End namespace Foam
142 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
144 #include "VRWGraphListI.H"
146 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
148 #endif
150 // ************************************************************************* //