/*---------------------------------------------------------------------------*\ ========= | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox \\ / O peration | \\ / A nd | www.openfoam.com \\/ M anipulation | ------------------------------------------------------------------------------- Copyright (C) 2014 OpenFOAM Foundation Copyright (C) 2018-2024 OpenCFD Ltd. ------------------------------------------------------------------------------- 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 . Class Foam::IOmapDistribute Description IOmapDistribute is derived from mapDistribute and IOobject to give the mapDistribute automatic IO functionality via the objectRegistry. SourceFiles IOmapDistribute.C \*---------------------------------------------------------------------------*/ #ifndef Foam_IOmapDistribute_H #define Foam_IOmapDistribute_H #include "mapDistribute.H" #include "regIOobject.H" // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // namespace Foam { /*---------------------------------------------------------------------------*\ Class IOmapDistribute Declaration \*---------------------------------------------------------------------------*/ class IOmapDistribute : public regIOobject, public mapDistribute { // Private Member Functions //- Read if IOobject flags set. Return true if read. bool readIOcontents(); public: //- Runtime type information TypeName("mapDistribute"); // Constructors //- Construct from IOobject IOmapDistribute(const IOobject& io); //- Construct from IOobject, copying mapDistribute contents IOmapDistribute(const IOobject& io, const mapDistribute& map); //- Construct from IOobject, moving mapDistribute contents IOmapDistribute(const IOobject& io, mapDistribute&& map); //- Destructor virtual ~IOmapDistribute() = default; // Member Functions //- ReadData function required for regIOobject read operation virtual bool readData(Istream&); //- WriteData function required for regIOobject write operation virtual bool writeData(Ostream&) const; }; // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // } // End namespace Foam // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // #endif // ************************************************************************* //