OpenFOAM
v2512
The open source CFD toolbox
Loading...
Searching...
No Matches
primitiveEntryTemplates.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) 2011 OpenFOAM Foundation
9
Copyright (C) 2024 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 "
primitiveEntry.H
"
30
#include "
dictionary.H
"
31
#include "
SpanStream.H
"
32
#include "
StringStream.H
"
// Legacy include, perhaps expected elsewhere
33
34
// * * * * * * * * * * * * * * * * Constructors * * * * * * * * * * * * * * //
35
36
template
<
class
T>
37
Foam::primitiveEntry::primitiveEntry
(
const
keyType
& key,
const
T
& val)
38
:
39
entry
(key),
40
ITstream
(
IOstreamOption
(), key)
41
{
42
OCharStream
os
;
43
os
<< val <<
token::END_STATEMENT
;
44
ISpanStream
is(
os
.view());
45
readEntry(
dictionary::null
, is);
46
}
47
48
49
// ************************************************************************* //
SpanStream.H
Input/output streams with (internal or external) character storage.
StringStream.H
Input/output from string buffers.
Foam::IOstreamOption
A simple container for options an IOstream can normally have.
Definition
IOstreamOption.H:60
Foam::ISpanStream
Similar to IStringStream but using an externally managed buffer for its input. This allows the input ...
Definition
ISpanStream.H:274
Foam::ITstream::ITstream
ITstream(const ITstream &is)
Copy construct.
Definition
ITstream.C:148
Foam::OCharStream
An OSstream with internal List storage.
Definition
OCharStream.H:358
Foam::dictionary::null
static const dictionary null
An empty dictionary, which is also the parent for all dictionaries.
Definition
dictionary.H:487
Foam::entry::entry
entry(const keyType &keyword)
Construct from keyword.
Definition
entry.C:62
Foam::keyType
A class for handling keywords in dictionaries.
Definition
keyType.H:69
Foam::primitiveEntry::primitiveEntry
primitiveEntry(const keyType &key)
Construct from keyword and no tokens.
Definition
primitiveEntry.C:211
Foam::token::END_STATEMENT
@ END_STATEMENT
End entry [isseparator].
Definition
token.H:173
dictionary.H
os
OBJstream os(runTime.globalPath()/outputName)
Foam::T
void T(FieldField< Field, Type > &f1, const FieldField< Field, Type > &f2)
Definition
FieldFieldFunctions.C:53
primitiveEntry.H
src
OpenFOAM
db
dictionary
primitiveEntry
primitiveEntryTemplates.C
Generated by
1.16.1