Loading...
Searching...
No Matches
wordIOList.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) 2012-2013 OpenFOAM Foundation
9 Copyright (C) 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
27\*---------------------------------------------------------------------------*/
28
29#ifndef Foam_wordIOList_H
30#define Foam_wordIOList_H
31
32#include "wordList.H"
33#include "IOList.H"
34
35// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
37namespace Foam
38{
41
44
45 //- Print a List of wordList as a table
47 (
48 const UList<wordList>& tbl,
49 List<std::string::size_type>& columnWidths,
50 Ostream& os,
51 bool headerSeparator = true
52 );
53
54 //- Print a List of wordList as a table
56 (
57 const UList<wordList>& tbl,
58 Ostream& os,
59 bool headerSeparator = true
60 );
61}
62
63// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
64
65#endif
66
67// ************************************************************************* //
A List of objects of type <T> with automated input and output.
Definition IOList.H:53
A 1D array of objects of type <T>, where the size of the vector is known and used for subscript bound...
Definition List.H:72
An Ostream is an abstract base class for all output systems (streams, files, token lists,...
Definition Ostream.H:59
A 1D vector of objects of type <T>, where the size of the vector is known and can be used for subscri...
Definition UList.H:89
OBJstream os(runTime.globalPath()/outputName)
Namespace for OpenFOAM.
IOList< word > wordIOList
IO for a List of word.
Definition wordIOList.H:33
IOList< wordList > wordListIOList
IO for a List of wordList.
Definition wordIOList.H:36
Ostream & printTable(const UList< wordList > &tbl, List< std::string::size_type > &columnWidths, Ostream &os, bool headerSeparator=true)
Print a List of wordList as a table.
Definition wordIOList.C:40