polyBoundaryMeshEntries.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-2015 OpenFOAM Foundation
9 Copyright (C) 2020 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
27Class
28 Foam::polyBoundaryMeshEntries
29
30Description
31 Read and store dictionary entries for boundary patches
32
33SourceFiles
34 polyBoundaryMeshEntries.C
35
36\*---------------------------------------------------------------------------*/
37
38#ifndef polyBoundaryMeshEntries_H
39#define polyBoundaryMeshEntries_H
40
41#include "regIOobject.H"
42#include "PtrList.H"
43#include "entry.H"
44
45// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
46
47namespace Foam
48{
49
50/*---------------------------------------------------------------------------*\
51 Class polyBoundaryMeshEntries Declaration
52\*---------------------------------------------------------------------------*/
55:
56 public regIOobject,
57 public PtrList<entry>
58{
59public:
60
61 //- Runtime type information
62 TypeNameNoDebug("polyBoundaryMesh");
63
64
65 // Constructors
67 explicit polyBoundaryMeshEntries(const IOobject& io)
68 :
70 PtrList<entry>()
71 {
72 if
73 (
74 (
77 )
79 )
80 {
81 readStream(typeName) >> *this;
82 }
83 }
84
85
86 // Member Functions
88 bool writeData(Ostream&) const
89 {
91 return false;
92 }
93};
94
95
96// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
97
98} // End namespace Foam
99
100// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
101
102#endif
103
104// ************************************************************************* //
Defines the attributes of an object for which implicit objectRegistry management is supported,...
Definition: IOobject.H:170
readOption readOpt() const noexcept
The read option.
Definition: IOobjectI.H:164
@ MUST_READ_IF_MODIFIED
Definition: IOobject.H:180
An Ostream is an abstract base class for all output systems (streams, files, token lists,...
Definition: Ostream.H:62
A list of pointers to objects of type <T>, with allocation/deallocation management of the pointers....
Definition: PtrList.H:73
A keyword and a list of tokens is an 'entry'.
Definition: entry.H:70
Read and store dictionary entries for boundary patches.
TypeNameNoDebug("polyBoundaryMesh")
Runtime type information.
bool writeData(Ostream &) const
Pure virtual writeData function.
polyBoundaryMeshEntries(const IOobject &io)
regIOobject is an abstract class derived from IOobject to handle automatic object registration with t...
Definition: regIOobject.H:76
Istream & readStream(const word &, const bool valid=true)
Return Istream and check object type against that given.
bool headerOk()
Read and check header info. Does not check the headerClassName.
Definition: regIOobject.C:438
#define NotImplemented
Issue a FatalErrorIn for a function not currently implemented.
Definition: error.H:517
IOobject io("surfaceFilmProperties", mesh.time().constant(), mesh, IOobject::READ_IF_PRESENT, IOobject::NO_WRITE, false)
Namespace for OpenFOAM.
#define TypeNameNoDebug(TypeNameString)
Declare a ClassNameNoDebug() with extra virtual type info.
Definition: typeInfo.H:68