Files
openfoam/src/OpenFOAM/db/IOobjects/IOList/IOList.H
Mark Olesen 3d608bf06a ENH: remove reliance on the Xfer class (issue #639)
This class is largely a pre-C++11 holdover. It is now possible to
simply use move construct/assignment directly.

In a few rare cases (eg, polyMesh::resetPrimitives) it has been
replaced by an autoPtr.
2018-03-05 13:28:53 +01:00

115 lines
3.0 KiB
C++

/*---------------------------------------------------------------------------*\
========= |
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
\\ / O peration |
\\ / A nd | Copyright (C) 2011-2016 OpenFOAM Foundation
\\/ M anipulation | Copyright (C) 2018 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 <http://www.gnu.org/licenses/>.
Class
Foam::IOList
Description
A List of objects of type \<T\> with automated input and output.
SourceFiles
IOList.C
\*---------------------------------------------------------------------------*/
#ifndef IOList_H
#define IOList_H
#include "List.H"
#include "regIOobject.H"
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
namespace Foam
{
/*---------------------------------------------------------------------------*\
Class IOList Declaration
\*---------------------------------------------------------------------------*/
template<class T>
class IOList
:
public regIOobject,
public List<T>
{
public:
//- Runtime type information
TypeName("List");
// Constructors
//- Default copy construct
IOList(const IOList&) = default;
//- Construct from IOobject
explicit IOList(const IOobject& io);
//- Construct from IOobject and size of IOList
IOList(const IOobject& io, const label len);
//- Construct from IOobject and a copy of UList content
IOList(const IOobject& io, const UList<T>& content);
//- Construct by transferring the List content
IOList(const IOobject& io, List<T>&& content);
//- Destructor
virtual ~IOList() = default;
// Member Functions
bool writeData(Ostream& os) const;
// Member Operators
//- Copy assignment of entries
void operator=(const IOList<T>& rhs);
//- Copy or move assignment of entries
using List<T>::operator=;
};
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
} // End namespace Foam
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
#ifdef NoRepository
#include "IOList.C"
#endif
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
#endif
// ************************************************************************* //