/*---------------------------------------------------------------------------*\
========= |
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
\\ / O peration | Website: https://openfoam.org
\\ / A nd | Copyright (C) 2020 OpenFOAM Foundation
\\/ 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 3 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, see .
\*---------------------------------------------------------------------------*/
#include "CodedBase.H"
// * * * * * * * * * * * * * * Static Data Members * * * * * * * * * * * * * //
template
const Foam::word Foam::CodedBase::codeTemplateC =
Foam::word(CodedType::typeName_()) + "Template.C";
template
const Foam::word Foam::CodedBase::codeTemplateH =
Foam::word(CodedType::typeName_()) + "Template.H";
// * * * * * * * * * * * * * Private Member Functions * * * * * * * * * * * //
template
const Foam::wordList&
Foam::CodedBase::codeKeys() const
{
return codeKeys_;
}
template
Foam::string Foam::CodedBase::description() const
{
return CodedType::typeName + " " + codeName();
}
// * * * * * * * * * * * * * * * * Constructors * * * * * * * * * * * * * * //
template
Foam::CodedBase::CodedBase(const dictionary& dict)
:
codeName_(dict.lookup("name")),
dict_(dict)
{}
template
Foam::CodedBase::CodedBase(const CodedBase& cb)
:
codeName_(cb.codeName_),
dict_(cb.dict_)
{}
// * * * * * * * * * * * * * * * * Destructor * * * * * * * * * * * * * * * //
template
Foam::CodedBase::~CodedBase()
{}
// * * * * * * * * * * * * * * * Member Functions * * * * * * * * * * * * * //
template
const Foam::word& Foam::CodedBase::codeName() const
{
return codeName_;
}
template
const Foam::dictionary&
Foam::CodedBase::codeDict() const
{
return dict_;
}
template
void Foam::CodedBase::writeCode(Ostream& os) const
{
writeEntry(os, "name", codeName_);
forAll(codeKeys_, i)
{
if (dict_.found(codeKeys_[i]))
{
writeKeyword(os, codeKeys_[i]);
os.write(verbatimString(dict_[codeKeys_[i]]))
<< token::END_STATEMENT << nl;
}
}
}
// ************************************************************************* //