exprResultStoredStack.C
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-2018 Bernhard Gschaider
9  Copyright (C) 2019 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 \*---------------------------------------------------------------------------*/
28 
29 #include "exprResultStoredStack.H"
31 
32 // * * * * * * * * * * * * * * Static Data Members * * * * * * * * * * * * * //
33 
34 namespace Foam
35 {
36 namespace expressions
37 {
38 
39  defineTypeName(exprResultStoredStack);
40 
42  (
43  exprResult,
44  exprResultStoredStack,
45  dictionary
46  );
48  (
49  exprResult,
50  exprResultStoredStack,
51  empty
52  );
53 
54 } // End namespace expressions
55 } // End namespace Foam
56 
57 
58 // * * * * * * * * * * * * * * * * Constructors * * * * * * * * * * * * * * //
59 
61 :
62  expressions::exprResultStack()
63 {
64  needsReset(false); // Override parent: does not reset every timestep
65 }
66 
67 
69 (
70  const exprResultStoredStack& rhs
71 )
72 :
73  expressions::exprResultStack(rhs)
74 {
75  needsReset(false); // Override parent: does not reset every timestep
76 }
77 
78 
80 (
81  const dictionary& dict
82 )
83 :
84  expressions::exprResultStack(dict)
85 {
86  needsReset(false); // Override parent: does not reset every timestep
87 }
88 
89 
90 // * * * * * * * * * * * * * * * Member Operators * * * * * * * * * * * * * //
91 
92 void Foam::expressions::exprResultStoredStack::operator=
93 (
94  const exprResultStoredStack& rhs
95 )
96 {
97  if (this == &rhs)
98  {
99  return; // Self-assignment is a no-op
100  }
101 
103 }
104 
105 
106 // ************************************************************************* //
dictionary dict
A list of keyword definitions, which are a keyword followed by a number of values (eg...
Definition: dictionary.H:129
void operator=(const exprResultStack &rhs)
Copy assignment.
Macros for easy insertion into run-time selection tables.
defineTypeName(fvExprDriverWriter)
void needsReset(bool val)
Adjusts the internal needsReset value.
Definition: exprResult.H:324
addToRunTimeSelectionTable(exprResult, exprResult, dictionary)
An exprResultStack with persistence.
Namespace for OpenFOAM.
A stack of polymorphic fields. Can be used to build a list of results one at a time.