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 <bgschaid@hfd-research.com>
9 Copyright (C) 2019 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
27\*---------------------------------------------------------------------------*/
28
31
32// * * * * * * * * * * * * * * Static Data Members * * * * * * * * * * * * * //
33
34namespace Foam
35{
36namespace expressions
37{
38
40
42 (
46 );
48 (
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
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// ************************************************************************* //
Macros for easy insertion into run-time selection tables.
#define addToRunTimeSelectionTable(baseType, thisType, argNames)
Add to construction table with typeName as the key.
A list of keyword definitions, which are a keyword followed by a number of values (eg,...
Definition: dictionary.H:126
A stack of polymorphic fields. Can be used to build a list of results one at a time.
void operator=(const exprResultStack &rhs)
Copy assignment.
An exprResultStack with persistence.
A polymorphic field/result from evaluating an expression.
Definition: exprResult.H:127
void needsReset(bool val)
Adjusts the internal needsReset value.
Definition: exprResult.H:312
friend Ostream & operator(Ostream &, const faMatrix< Type > &)
#define defineTypeName(Type)
Define the typeName.
Definition: className.H:96
Namespace for OpenFOAM.
dictionary dict