faBoundaryMeshEntries.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) 2022 OpenCFD Ltd.
9 -------------------------------------------------------------------------------
10 License
11  This file is part of OpenFOAM.
12 
13  OpenFOAM is free software: you can redistribute it and/or modify it
14  under the terms of the GNU General Public License as published by
15  the Free Software Foundation, either version 3 of the License, or
16  (at your option) any later version.
17 
18  OpenFOAM is distributed in the hope that it will be useful, but WITHOUT
19  ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
20  FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
21  for more details.
22 
23  You should have received a copy of the GNU General Public License
24  along with OpenFOAM. If not, see <http://www.gnu.org/licenses/>.
25 
26 Class
27  Foam::faBoundaryMeshEntries
28 
29 Description
30  Read and store dictionary entries for finite-area boundary patches.
31 
32 SourceFiles
33  faBoundaryMeshEntries.C
34 
35 \*---------------------------------------------------------------------------*/
36 
37 #ifndef Foam_faBoundaryMeshEntries_H
38 #define Foam_faBoundaryMeshEntries_H
39 
40 #include "regIOobject.H"
41 #include "PtrList.H"
42 #include "entry.H"
43 
44 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
45 
46 namespace Foam
47 {
48 
49 /*---------------------------------------------------------------------------*\
50  Class faBoundaryMeshEntries Declaration
51 \*---------------------------------------------------------------------------*/
52 
54 :
55  public regIOobject,
56  public PtrList<entry>
57 {
58 public:
59 
60  //- Runtime type information
61  TypeNameNoDebug("faBoundaryMesh");
62 
63 
64  // Constructors
65 
66  //- Read construct from IOobject
67  explicit faBoundaryMeshEntries(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 // ************************************************************************* //
faBoundaryMeshEntries(const IOobject &io)
Read construct from IOobject.
TypeNameNoDebug("faBoundaryMesh")
Runtime type information.
bool headerOk()
Read and check header info. Does not check the headerClassName.
Definition: regIOobject.C:434
bool isReadOptional() const noexcept
True if (READ_IF_PRESENT) bits are set.
Istream & readStream(const word &, const bool valid=true)
Return Istream and check object type against that given.
IOobject io("surfaceFilmProperties", mesh.time().constant(), mesh, IOobject::READ_IF_PRESENT, IOobject::NO_WRITE, false)
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 | MUST_READ_IF_MODIFIED) bits are set.
Read and store dictionary entries for finite-area boundary patches.
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:69
bool writeData(Ostream &) const
Pure virtual writeData function.
#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:166
Namespace for OpenFOAM.
A keyword and a list of tokens is an &#39;entry&#39;.
Definition: entry.H:63