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-2022 OpenCFD Ltd.
10 -------------------------------------------------------------------------------
11 License
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 Class
28  Foam::polyBoundaryMeshEntries
29 
30 Description
31  Read and store dictionary entries for boundary patches
32 
33 SourceFiles
34  polyBoundaryMeshEntries.C
35 
36 \*---------------------------------------------------------------------------*/
37 
38 #ifndef Foam_polyBoundaryMeshEntries_H
39 #define Foam_polyBoundaryMeshEntries_H
40 
41 #include "regIOobject.H"
42 #include "PtrList.H"
43 #include "entry.H"
44 
45 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
46 
47 namespace Foam
48 {
49 
50 /*---------------------------------------------------------------------------*\
51  Class polyBoundaryMeshEntries Declaration
52 \*---------------------------------------------------------------------------*/
53 
55 :
56  public regIOobject,
57  public PtrList<entry>
58 {
59 public:
60 
61  //- Runtime type information
62  TypeNameNoDebug("polyBoundaryMesh");
63 
64 
65  // Constructors
66 
67  explicit polyBoundaryMeshEntries(const IOobject& io)
68  :
69  regIOobject(io),
70  PtrList<entry>()
71  {
72  if (isReadRequired() || (isReadOptional() && headerOk()))
73  {
74  readStream(typeName) >> *this;
75  }
76  }
77 
78 
79  // Member Functions
80 
81  bool writeData(Ostream&) const
82  {
84  return false;
85  }
86 };
87 
88 
89 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
90 
91 } // End namespace Foam
92 
93 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
94 
95 #endif
96 
97 // ************************************************************************* //
polyBoundaryMeshEntries(const IOobject &io)
bool headerOk()
Read and check header info. Does not check the headerClassName.
Definition: regIOobject.C:437
bool isReadOptional() const noexcept
True if (LAZY_READ) bits are set [same as READ_IF_PRESENT].
bool writeData(Ostream &) const
Pure virtual writeData function.
An Ostream is an abstract base class for all output systems (streams, files, token lists...
Definition: Ostream.H:55
bool isReadRequired() const noexcept
True if (MUST_READ | READ_MODIFIED) bits are set.
A list of pointers to objects of type <T>, with allocation/deallocation management of the pointers...
Definition: List.H:55
regIOobject is an abstract class derived from IOobject to handle automatic object registration with t...
Definition: regIOobject.H:65
TypeNameNoDebug("polyBoundaryMesh")
Runtime type information.
IOobject io("surfaceFilmProperties", mesh.time().constant(), mesh, IOobject::READ_IF_PRESENT, IOobject::NO_WRITE, IOobject::NO_REGISTER)
Read and store dictionary entries for boundary patches.
#define NotImplemented
Issue a FatalErrorIn for a function not currently implemented.
Definition: error.H:666
Defines the attributes of an object for which implicit objectRegistry management is supported...
Definition: IOobject.H:171
Istream & readStream(const word &, const bool readOnProc=true)
Return Istream and check object type against that given.
Namespace for OpenFOAM.
A keyword and a list of tokens is an &#39;entry&#39;.
Definition: entry.H:63