labelList.H
Go to the documentation of this file.
1/*---------------------------------------------------------------------------*\
2 ========= |
3 \\ / F ield | OpenFOAM: The Open Source CFD Toolbox
4 \\ / O peration |
5 \\ / A nd | www.openfoam.com
6 \\/ M anipulation |
7-------------------------------------------------------------------------------
8 Copyright (C) 2011 OpenFOAM Foundation
9 Copyright (C) 2017-2019 OpenCFD Ltd.
10-------------------------------------------------------------------------------
11License
12 This file is part of OpenFOAM.
13
14 OpenFOAM is free software: you can redistribute it and/or modify it
15 under the terms of the GNU General Public License as published by
16 the Free Software Foundation, either version 3 of the License, or
17 (at your option) any later version.
18
19 OpenFOAM is distributed in the hope that it will be useful, but WITHOUT
20 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
21 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
22 for more details.
23
24 You should have received a copy of the GNU General Public License
25 along with OpenFOAM. If not, see <http://www.gnu.org/licenses/>.
26
27Typedef
28 Foam::labelListList
29
30Description
31 A List of labelList.
32
33Typedef
34 Foam::labelListListList
35
36Description
37 A List of labelListList.
38
39\*---------------------------------------------------------------------------*/
40
41#ifndef Foam_labelList_H
42#define Foam_labelList_H
43
44#include "label.H"
45#include "List.H"
46#include "SubList.H"
47
48// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
49
50namespace Foam
51{
52 // labelUList = defined in UList.H
53 // labelList = defined in List.H
54 // labelSubList = defined in SubList.H
55
58
59
60 //- A zero-sized list of labels
61 // \deprecated(2019-02) use labelList::null() instead
62 extern const labelList emptyLabelList;
63}
64
65// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
66
67#endif
68
69// ************************************************************************* //
A 1D array of objects of type <T>, where the size of the vector is known and used for subscript bound...
Definition: List.H:77
Namespace for OpenFOAM.
const labelList emptyLabelList
A zero-sized list of labels.
Definition: labelList.C:33
List< labelList > labelListList
A List of labelList.
Definition: labelList.H:56
List< labelListList > labelListListList
A List of labelListList.
Definition: labelList.H:57