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>
38 :
39  entry(key),
41 {
43  os << val << token::END_STATEMENT;
44  ISpanStream is(os.view());
45  readEntry(dictionary::null, is);
46 }
47 
48 
49 // ************************************************************************* //
A class for handling keywords in dictionaries.
Definition: keyType.H:66
Input/output streams with (internal or external) character storage.
Input/output from string buffers.
A simple container for options an IOstream can normally have.
End entry [isseparator].
Definition: token.H:160
An OSstream with internal List storage.
Definition: OCharStream.H:231
static const dictionary null
An empty dictionary, which is also the parent for all dictionaries.
Definition: dictionary.H:486
OBJstream os(runTime.globalPath()/outputName)
const volScalarField & T
auto key(const Type &t) -> typename std::enable_if< std::is_enum< Type >::value, typename std::underlying_type< Type >::type >::type
Definition: foamGltfBase.H:103
primitiveEntry(const keyType &key)
Construct from keyword and no tokens.
Similar to IStringStream but using an externally managed buffer for its input. This allows the input ...
Definition: ISpanStream.H:251
An input stream of tokens.
Definition: ITstream.H:52
A keyword and a list of tokens is an &#39;entry&#39;.
Definition: entry.H:63