fvMeshMovers::valveBank.H: Removed unused code

Resolves bug-report https://bugs.openfoam.org/view.php?id=3760
This commit is contained in:
Henry Weller
2021-12-07 17:17:00 +00:00
parent 5d93da3aed
commit 25b60616ac

View File

@ -1,100 +0,0 @@
/*---------------------------------------------------------------------------*\
========= |
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
\\ / O peration | Website: https://openfoam.org
\\ / A nd | Copyright (C) 2011-2021 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 <http://www.gnu.org/licenses/>.
Class
Foam::valveBank
Description
A list of valves.
\*---------------------------------------------------------------------------*/
#ifndef valveBank_H
#define valveBank_H
#include "PtrList.H"
#include "engineValve.H"
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
namespace Foam
{
/*---------------------------------------------------------------------------*\
Class valveBank Declaration
\*---------------------------------------------------------------------------*/
class valveBank
:
public PtrList<engineValve>
{
public:
// Constructors
//- Construct from Istream
valveBank
(
const polyMesh& mesh,
Istream& is
)
{
PtrList<entry> valveEntries(is);
setSize(valveEntries.size());
forAll(valveEntries, valveI)
{
valveI,
set
(
new engineValve
(
valveEntries[valveI].keyword(),
mesh,
valveEntries[valveI].dict()
)
);
}
}
//- Disallow default bitwise copy construction
valveBank(const valveBank&) = delete;
// Member Operators
//- Disallow default bitwise assignment
void operator=(const valveBank&) = delete;
};
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
} // End namespace Foam
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
#endif
// ************************************************************************* //