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 -------------------------------------------------------------------------------
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 polyBoundaryMeshEntries_H
39 #define 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
73  (
74  (
77  )
79  )
80  {
81  readStream(typeName) >> *this;
82  }
83  }
84 
85 
86  // Member Functions
87 
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 // ************************************************************************* //
Foam::entry
A keyword and a list of tokens is an 'entry'.
Definition: entry.H:67
regIOobject.H
Foam::IOobject
Defines the attributes of an object for which implicit objectRegistry management is supported,...
Definition: IOobject.H:169
Foam::polyBoundaryMeshEntries
Read and store dictionary entries for boundary patches.
Definition: polyBoundaryMeshEntries.H:53
Foam::polyBoundaryMeshEntries::TypeNameNoDebug
TypeNameNoDebug("polyBoundaryMesh")
Runtime type information.
entry.H
Foam::polyBoundaryMeshEntries::writeData
bool writeData(Ostream &) const
Pure virtual writeData function.
Definition: polyBoundaryMeshEntries.H:87
NotImplemented
#define NotImplemented
Issue a FatalErrorIn for a function not currently implemented.
Definition: error.H:517
Foam::IOobject::READ_IF_PRESENT
Definition: IOobject.H:187
Foam::PtrList
A list of pointers to objects of type <T>, with allocation/deallocation management of the pointers....
Definition: List.H:59
Foam::polyBoundaryMeshEntries::polyBoundaryMeshEntries
polyBoundaryMeshEntries(const IOobject &io)
Definition: polyBoundaryMeshEntries.H:66
Foam
Namespace for OpenFOAM.
Definition: atmBoundaryLayer.C:33
Foam::IOobject::readOpt
readOption readOpt() const noexcept
The read option.
Definition: IOobjectI.H:164
Foam::regIOobject
regIOobject is an abstract class derived from IOobject to handle automatic object registration with t...
Definition: regIOobject.H:73
Foam::IOobject::MUST_READ_IF_MODIFIED
Definition: IOobject.H:186
PtrList.H
Foam::Ostream
An Ostream is an abstract base class for all output systems (streams, files, token lists,...
Definition: Ostream.H:56
Foam::regIOobject::readStream
Istream & readStream(const word &, const bool valid=true)
Return Istream and check object type against that given.
Definition: regIOobjectRead.C:129
Foam::regIOobject::headerOk
bool headerOk()
Read and check header info.
Definition: regIOobject.C:436
Foam::IOobject::MUST_READ
Definition: IOobject.H:185