Newer
Older
/*---------------------------------------------------------------------------*\
========= |
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
\\ / O peration |
\\/ 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 <http://www.gnu.org/licenses/>.
\*---------------------------------------------------------------------------*/
#include "dictionary.H"
// * * * * * * * * * * * * * * * * Constructors * * * * * * * * * * * * * * //
Foam::surfZoneIdentifier::surfZoneIdentifier()
Foam::surfZoneIdentifier::surfZoneIdentifier(const label index)
:
name_(),
index_(index),
geometricType_()
Foam::surfZoneIdentifier::surfZoneIdentifier
(
const word& name,
const label index
)
:
name_(name),
index_(index),
geometricType_()
{}
Foam::surfZoneIdentifier::surfZoneIdentifier
(
const word& name,
const label index,
const word& geometricType
)
:
name_(name),
Foam::surfZoneIdentifier::surfZoneIdentifier
(
const word& name,
const dictionary& dict,
const label index
)
:
name_(name),
index_(index),
geometricType_()
{
dict.readIfPresent("geometricType", geometricType_);
}
Foam::surfZoneIdentifier::surfZoneIdentifier
// * * * * * * * * * * * * * * * Member Functions * * * * * * * * * * * * * //
void Foam::surfZoneIdentifier::write(Ostream& os) const
Mark Olesen
committed
os.writeEntry("geometricType", geometricType_);
// * * * * * * * * * * * * * * * Global Operators * * * * * * * * * * * * * //
bool Foam::operator==
(
const surfZoneIdentifier& a,
const surfZoneIdentifier& b
)
return
(
(a.index() == b.index())
&& (a.name() == b.name())
&& (a.geometricType() == b.geometricType())
);
bool Foam::operator!=
(
const surfZoneIdentifier& a,
const surfZoneIdentifier& b
)
return !(a == b);
// * * * * * * * * * * * * * * * IOstream Operators * * * * * * * * * * * * //
Foam::Istream& Foam::operator>>(Istream& is, surfZoneIdentifier& obj)
{
// Also read "" for empty words
obj.name() = word::validate(token(is).stringToken());
obj.geometricType() = word::validate(token(is).stringToken());
Foam::Ostream& Foam::operator<<(Ostream& os, const surfZoneIdentifier& obj)
// Force unconditional line-breaks on list output.
// We otherwise risk extremely unreadable entries
os << nl;
// Empty words are double-quoted so they are treated as 'string'
os.writeQuoted(obj.name(), obj.name().empty()) << token::SPACE;
os.writeQuoted(obj.geometricType(), obj.geometricType().empty());
os.check(FUNCTION_NAME);
// ************************************************************************* //