mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-11-28 03:28:01 +00:00
- partial revert for commit d21869b580
* only add extra newlines for a top-level dictionary that is output as such
- make "#inputMode merge" the default instead of "#inputMode error"
* this corresponds to a very common usage case
137 lines
3.6 KiB
C++
137 lines
3.6 KiB
C++
/*---------------------------------------------------------------------------*\
|
|
========= |
|
|
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
|
|
\\ / O peration |
|
|
\\ / A nd | Copyright (C) 1991-2009 OpenCFD Ltd.
|
|
\\/ M anipulation |
|
|
-------------------------------------------------------------------------------
|
|
License
|
|
This file is part of OpenFOAM.
|
|
|
|
OpenFOAM is free software; you can redistribute it and/or modify it
|
|
under the terms of the GNU General Public License as published by the
|
|
Free Software Foundation; either version 2 of the License, or (at your
|
|
option) any later version.
|
|
|
|
OpenFOAM is distributed in the hope that it will be useful, but WITHOUT
|
|
ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
|
FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
|
for more details.
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
along with OpenFOAM; if not, write to the Free Software Foundation,
|
|
Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
|
|
|
Namespace
|
|
Foam::functionEntries
|
|
|
|
Description
|
|
Namespace for containing a functionEntry.
|
|
|
|
|
|
Class
|
|
Foam::functionEntry
|
|
|
|
Description
|
|
A functionEntry causes entries to be added/manipulated on the specified
|
|
dictionary given an input stream.
|
|
|
|
In dictionaries, a @c '\#' sigil is typically used for a functionEntry.
|
|
|
|
SourceFiles
|
|
functionEntry.C
|
|
functionEntryIO.C
|
|
|
|
\*---------------------------------------------------------------------------*/
|
|
|
|
#ifndef functionEntry_H
|
|
#define functionEntry_H
|
|
|
|
#include "word.H"
|
|
#include "memberFunctionSelectionTables.H"
|
|
|
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
|
|
|
namespace Foam
|
|
{
|
|
|
|
class primitiveEntry;
|
|
class dictionary;
|
|
|
|
/*---------------------------------------------------------------------------*\
|
|
Class functionEntry Declaration
|
|
\*---------------------------------------------------------------------------*/
|
|
|
|
class functionEntry
|
|
{
|
|
// Private Member Functions
|
|
|
|
//- Disallow default bitwise copy construct
|
|
functionEntry(const functionEntry&);
|
|
|
|
//- Disallow default bitwise assignment
|
|
void operator=(const functionEntry&);
|
|
|
|
|
|
public:
|
|
|
|
// Member Function Selectors
|
|
|
|
declareMemberFunctionSelectionTable
|
|
(
|
|
bool,
|
|
functionEntry,
|
|
execute,
|
|
dictionaryIstream,
|
|
(
|
|
dictionary& parentDict,
|
|
Istream& is
|
|
),
|
|
(parentDict, is)
|
|
);
|
|
|
|
//- Execute the functionEntry in a sub-dict context
|
|
static bool execute
|
|
(
|
|
const word& functionName,
|
|
dictionary& parentDict,
|
|
Istream&
|
|
);
|
|
|
|
declareMemberFunctionSelectionTable
|
|
(
|
|
bool,
|
|
functionEntry,
|
|
execute,
|
|
primitiveEntryIstream,
|
|
(
|
|
const dictionary& parentDict,
|
|
primitiveEntry& entry,
|
|
Istream& is
|
|
),
|
|
(parentDict, entry, is)
|
|
);
|
|
|
|
//- Execute the functionEntry in a primitiveEntry context
|
|
static bool execute
|
|
(
|
|
const word& functionName,
|
|
const dictionary& parentDict,
|
|
primitiveEntry&,
|
|
Istream&
|
|
);
|
|
|
|
|
|
};
|
|
|
|
|
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
|
|
|
} // End namespace Foam
|
|
|
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
|
|
|
#endif
|
|
|
|
// ************************************************************************* //
|