mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-11-28 03:28:01 +00:00
STYLE: consistent use of '= delete' for removed constructors/assignments
- make the purpose more explicit, and reduces some work for the compiler as well.
This commit is contained in:
@ -94,11 +94,11 @@ class basicSubGrid
|
||||
|
||||
// Private Member Functions
|
||||
|
||||
//- Disallow copy construct
|
||||
basicSubGrid(const basicSubGrid&);
|
||||
//- No copy construct
|
||||
basicSubGrid(const basicSubGrid&) = delete;
|
||||
|
||||
//- Disallow default bitwise assignment
|
||||
void operator=(const basicSubGrid&);
|
||||
//- No copy assignment
|
||||
void operator=(const basicSubGrid&) = delete;
|
||||
|
||||
|
||||
public:
|
||||
|
||||
@ -82,11 +82,11 @@ class basicSubGrid
|
||||
|
||||
// Private Member Functions
|
||||
|
||||
//- Disallow copy construct
|
||||
basicSubGrid(const basicSubGrid&);
|
||||
//- No copy construct
|
||||
basicSubGrid(const basicSubGrid&) = delete;
|
||||
|
||||
//- Disallow default bitwise assignment
|
||||
void operator=(const basicSubGrid&);
|
||||
//- No copy assignment
|
||||
void operator=(const basicSubGrid&) = delete;
|
||||
|
||||
|
||||
public:
|
||||
|
||||
@ -74,11 +74,11 @@ private:
|
||||
|
||||
// Private Member Functions
|
||||
|
||||
//- Disallow copy construct
|
||||
PDRDragModel(const PDRDragModel&);
|
||||
//- No copy construct
|
||||
PDRDragModel(const PDRDragModel&) = delete;
|
||||
|
||||
//- Disallow default bitwise assignment
|
||||
void operator=(const PDRDragModel&);
|
||||
//- No copy assignment
|
||||
void operator=(const PDRDragModel&) = delete;
|
||||
|
||||
|
||||
public:
|
||||
|
||||
@ -108,11 +108,11 @@ class basic
|
||||
|
||||
// Private Member Functions
|
||||
|
||||
//- Disallow copy construct
|
||||
basic(const basic&);
|
||||
//- No copy construct
|
||||
basic(const basic&) = delete;
|
||||
|
||||
//- Disallow default bitwise assignment
|
||||
void operator=(const basic&);
|
||||
//- No copy assignment
|
||||
void operator=(const basic&) = delete;
|
||||
|
||||
|
||||
public:
|
||||
|
||||
@ -70,11 +70,11 @@ class Gulder
|
||||
|
||||
// Private Member Functions
|
||||
|
||||
//- Disallow copy construct
|
||||
Gulder(const Gulder&);
|
||||
//- No copy construct
|
||||
Gulder(const Gulder&) = delete;
|
||||
|
||||
//- Disallow default bitwise assignment
|
||||
void operator=(const Gulder&);
|
||||
//- No copy assignment
|
||||
void operator=(const Gulder&) = delete;
|
||||
|
||||
|
||||
public:
|
||||
|
||||
@ -66,11 +66,11 @@ class SCOPEBlend
|
||||
|
||||
// Private Member Functions
|
||||
|
||||
//- Disallow copy construct
|
||||
SCOPEBlend(const SCOPEBlend&);
|
||||
//- No copy construct
|
||||
SCOPEBlend(const SCOPEBlend&) = delete;
|
||||
|
||||
//- Disallow default bitwise assignment
|
||||
void operator=(const SCOPEBlend&);
|
||||
//- No copy assignment
|
||||
void operator=(const SCOPEBlend&) = delete;
|
||||
|
||||
|
||||
public:
|
||||
|
||||
@ -84,11 +84,11 @@ class SCOPEXiEq
|
||||
|
||||
// Private Member Functions
|
||||
|
||||
//- Disallow copy construct
|
||||
SCOPEXiEq(const SCOPEXiEq&);
|
||||
//- No copy construct
|
||||
SCOPEXiEq(const SCOPEXiEq&) = delete;
|
||||
|
||||
//- Disallow default bitwise assignment
|
||||
void operator=(const SCOPEXiEq&);
|
||||
//- No copy assignment
|
||||
void operator=(const SCOPEXiEq&) = delete;
|
||||
|
||||
|
||||
public:
|
||||
|
||||
@ -79,11 +79,11 @@ private:
|
||||
|
||||
// Private Member Functions
|
||||
|
||||
//- Disallow copy construct
|
||||
XiEqModel(const XiEqModel&);
|
||||
//- No copy construct
|
||||
XiEqModel(const XiEqModel&) = delete;
|
||||
|
||||
//- Disallow default bitwise assignment
|
||||
void operator=(const XiEqModel&);
|
||||
//- No copy assignment
|
||||
void operator=(const XiEqModel&) = delete;
|
||||
|
||||
|
||||
public:
|
||||
|
||||
@ -65,11 +65,11 @@ class instability
|
||||
|
||||
// Private Member Functions
|
||||
|
||||
//- Disallow copy construct
|
||||
instability(const instability&);
|
||||
//- No copy construct
|
||||
instability(const instability&) = delete;
|
||||
|
||||
//- Disallow default bitwise assignment
|
||||
void operator=(const instability&);
|
||||
//- No copy assignment
|
||||
void operator=(const instability&) = delete;
|
||||
|
||||
|
||||
public:
|
||||
|
||||
@ -60,11 +60,11 @@ class KTS
|
||||
|
||||
// Private Member Functions
|
||||
|
||||
//- Disallow copy construct
|
||||
KTS(const KTS&);
|
||||
//- No copy construct
|
||||
KTS(const KTS&) = delete;
|
||||
|
||||
//- Disallow default bitwise assignment
|
||||
void operator=(const KTS&);
|
||||
//- No copy assignment
|
||||
void operator=(const KTS&) = delete;
|
||||
|
||||
|
||||
public:
|
||||
|
||||
@ -70,11 +70,11 @@ private:
|
||||
|
||||
// Private Member Functions
|
||||
|
||||
//- Disallow copy construct
|
||||
XiGModel(const XiGModel&);
|
||||
//- No copy construct
|
||||
XiGModel(const XiGModel&) = delete;
|
||||
|
||||
//- Disallow default bitwise assignment
|
||||
void operator=(const XiGModel&);
|
||||
//- No copy assignment
|
||||
void operator=(const XiGModel&) = delete;
|
||||
|
||||
|
||||
public:
|
||||
|
||||
@ -69,11 +69,11 @@ class instabilityG
|
||||
|
||||
// Private Member Functions
|
||||
|
||||
//- Disallow copy construct
|
||||
instabilityG(const instabilityG&);
|
||||
//- No copy construct
|
||||
instabilityG(const instabilityG&) = delete;
|
||||
|
||||
//- Disallow default bitwise assignment
|
||||
void operator=(const instabilityG&);
|
||||
//- No copy assignment
|
||||
void operator=(const instabilityG&) = delete;
|
||||
|
||||
|
||||
public:
|
||||
|
||||
@ -130,11 +130,11 @@ private:
|
||||
|
||||
// Private Member Functions
|
||||
|
||||
//- Disallow copy construct
|
||||
XiModel(const XiModel&);
|
||||
//- No copy construct
|
||||
XiModel(const XiModel&) = delete;
|
||||
|
||||
//- Disallow default bitwise assignment
|
||||
void operator=(const XiModel&);
|
||||
//- No copy assignment
|
||||
void operator=(const XiModel&) = delete;
|
||||
|
||||
|
||||
public:
|
||||
|
||||
@ -67,11 +67,11 @@ class algebraic
|
||||
|
||||
// Private Member Functions
|
||||
|
||||
//- Disallow copy construct
|
||||
algebraic(const algebraic&);
|
||||
//- No copy construct
|
||||
algebraic(const algebraic&) = delete;
|
||||
|
||||
//- Disallow default bitwise assignment
|
||||
void operator=(const algebraic&);
|
||||
//- No copy assignment
|
||||
void operator=(const algebraic&) = delete;
|
||||
|
||||
|
||||
public:
|
||||
|
||||
@ -55,11 +55,11 @@ class fixed
|
||||
{
|
||||
// Private Member Functions
|
||||
|
||||
//- Disallow copy construct
|
||||
fixed(const fixed&);
|
||||
//- No copy construct
|
||||
fixed(const fixed&) = delete;
|
||||
|
||||
//- Disallow default bitwise assignment
|
||||
void operator=(const fixed&);
|
||||
//- No copy assignment
|
||||
void operator=(const fixed&) = delete;
|
||||
|
||||
|
||||
public:
|
||||
|
||||
@ -67,11 +67,11 @@ class transport
|
||||
|
||||
// Private Member Functions
|
||||
|
||||
//- Disallow copy construct
|
||||
transport(const transport&);
|
||||
//- No copy construct
|
||||
transport(const transport&) = delete;
|
||||
|
||||
//- Disallow default bitwise assignment
|
||||
void operator=(const transport&);
|
||||
//- No copy assignment
|
||||
void operator=(const transport&) = delete;
|
||||
|
||||
|
||||
public:
|
||||
|
||||
@ -56,11 +56,11 @@ class VoFPatchTransfer
|
||||
{
|
||||
// Private member functions
|
||||
|
||||
//- Disallow default bitwise copy construct
|
||||
VoFPatchTransfer(const VoFPatchTransfer&);
|
||||
//- No copy construct
|
||||
VoFPatchTransfer(const VoFPatchTransfer&) = delete;
|
||||
|
||||
//- Disallow default bitwise assignment
|
||||
void operator=(const VoFPatchTransfer&);
|
||||
//- No copy assignment
|
||||
void operator=(const VoFPatchTransfer&) = delete;
|
||||
|
||||
|
||||
protected:
|
||||
|
||||
@ -135,11 +135,14 @@ class VoFSolidificationMeltingSource
|
||||
template<class RhoFieldType>
|
||||
void apply(const RhoFieldType& rho, fvMatrix<scalar>& eqn);
|
||||
|
||||
//- Disallow default bitwise copy construct
|
||||
VoFSolidificationMeltingSource(const VoFSolidificationMeltingSource&);
|
||||
//- No copy construct
|
||||
VoFSolidificationMeltingSource
|
||||
(
|
||||
const VoFSolidificationMeltingSource&
|
||||
) = delete;
|
||||
|
||||
//- Disallow default bitwise assignment
|
||||
void operator=(const VoFSolidificationMeltingSource&);
|
||||
//- No copy assignment
|
||||
void operator=(const VoFSolidificationMeltingSource&) = delete;
|
||||
|
||||
|
||||
public:
|
||||
|
||||
@ -73,11 +73,11 @@ protected:
|
||||
|
||||
// Private Member Functions
|
||||
|
||||
//- Disallow copy construct
|
||||
mixtureViscosityModel(const mixtureViscosityModel&);
|
||||
//- No copy construct
|
||||
mixtureViscosityModel(const mixtureViscosityModel&) = delete;
|
||||
|
||||
//- Disallow default bitwise assignment
|
||||
void operator=(const mixtureViscosityModel&);
|
||||
//- No copy assignment
|
||||
void operator=(const mixtureViscosityModel&) = delete;
|
||||
|
||||
|
||||
public:
|
||||
|
||||
@ -55,11 +55,11 @@ class relativeVelocityModel
|
||||
//- Return the list of patchFieldTypes for Udm derived from U
|
||||
wordList UdmPatchFieldTypes() const;
|
||||
|
||||
//- Disallow default bitwise copy construct
|
||||
relativeVelocityModel(const relativeVelocityModel&);
|
||||
//- No copy construct
|
||||
relativeVelocityModel(const relativeVelocityModel&) = delete;
|
||||
|
||||
//- Disallow default bitwise assignment
|
||||
void operator=(const relativeVelocityModel&);
|
||||
//- No copy assignment
|
||||
void operator=(const relativeVelocityModel&) = delete;
|
||||
|
||||
|
||||
protected:
|
||||
|
||||
@ -68,14 +68,14 @@ protected:
|
||||
|
||||
// Private Member Functions
|
||||
|
||||
//- Disallow copy construct
|
||||
//- No copy construct
|
||||
temperaturePhaseChangeTwoPhaseMixture
|
||||
(
|
||||
const temperaturePhaseChangeTwoPhaseMixture&
|
||||
);
|
||||
) = delete;
|
||||
|
||||
//- Disallow default bitwise assignment
|
||||
void operator=(const temperaturePhaseChangeTwoPhaseMixture&);
|
||||
//- No copy assignment
|
||||
void operator=(const temperaturePhaseChangeTwoPhaseMixture&) = delete;
|
||||
|
||||
|
||||
public:
|
||||
|
||||
@ -73,9 +73,15 @@ class threePhaseInterfaceProperties
|
||||
|
||||
// Private Member Functions
|
||||
|
||||
//- Disallow default bitwise copy construct and assignment
|
||||
threePhaseInterfaceProperties(const threePhaseInterfaceProperties&);
|
||||
void operator=(const threePhaseInterfaceProperties&);
|
||||
//- No copy construct
|
||||
threePhaseInterfaceProperties
|
||||
(
|
||||
const threePhaseInterfaceProperties&
|
||||
) = delete;
|
||||
|
||||
//- No copy assignment
|
||||
void operator=(const threePhaseInterfaceProperties&) = delete;
|
||||
|
||||
|
||||
//- Correction for the boundary condition on the unit normal nHat on
|
||||
// walls to produce the correct contact dynamic angle.
|
||||
|
||||
@ -69,11 +69,11 @@ protected:
|
||||
|
||||
// Private Member Functions
|
||||
|
||||
//- Disallow copy construct
|
||||
phaseChangeTwoPhaseMixture(const phaseChangeTwoPhaseMixture&);
|
||||
//- No copy construct
|
||||
phaseChangeTwoPhaseMixture(const phaseChangeTwoPhaseMixture&) = delete;
|
||||
|
||||
//- Disallow default bitwise assignment
|
||||
void operator=(const phaseChangeTwoPhaseMixture&);
|
||||
//- No copy assignment
|
||||
void operator=(const phaseChangeTwoPhaseMixture&) = delete;
|
||||
|
||||
|
||||
public:
|
||||
|
||||
@ -52,11 +52,11 @@ class saturationModel
|
||||
{
|
||||
// Private Member Functions
|
||||
|
||||
//- Disallow default bitwise copy construct
|
||||
saturationModel(const saturationModel&);
|
||||
//- No copy construct
|
||||
saturationModel(const saturationModel&) = delete;
|
||||
|
||||
//- Disallow default bitwise assignment
|
||||
void operator=(const saturationModel&);
|
||||
//- No copy assignment
|
||||
void operator=(const saturationModel&) = delete;
|
||||
|
||||
|
||||
public:
|
||||
|
||||
@ -58,11 +58,11 @@ class wallDependentModel
|
||||
|
||||
// Private Member Functions
|
||||
|
||||
//- Disallow default bitwise copy construct
|
||||
wallDependentModel(const wallDependentModel&);
|
||||
//- No copy construct
|
||||
wallDependentModel(const wallDependentModel&) = delete;
|
||||
|
||||
//- Disallow default bitwise assignment
|
||||
void operator=(const wallDependentModel&);
|
||||
//- No copy assignment
|
||||
void operator=(const wallDependentModel&) = delete;
|
||||
|
||||
|
||||
public:
|
||||
|
||||
@ -78,11 +78,14 @@ class BlendedInterfacialModel
|
||||
|
||||
// Private Member Functions
|
||||
|
||||
//- Disallow default bitwise copy construct
|
||||
BlendedInterfacialModel(const BlendedInterfacialModel<ModelType>&);
|
||||
//- No copy construct
|
||||
BlendedInterfacialModel
|
||||
(
|
||||
const BlendedInterfacialModel&
|
||||
) = delete;
|
||||
|
||||
//- Disallow default bitwise assignment
|
||||
void operator=(const BlendedInterfacialModel<ModelType>&);
|
||||
//- No copy assignment
|
||||
void operator=(const BlendedInterfacialModel<ModelType>&) = delete;
|
||||
|
||||
//- Correct coeff/value on fixed flux boundary conditions
|
||||
template<class GeometricField>
|
||||
|
||||
@ -57,11 +57,11 @@ class departureDiameterModel
|
||||
{
|
||||
// Private Member Functions
|
||||
|
||||
//- Disallow default bitwise copy construct
|
||||
departureDiameterModel(const departureDiameterModel&);
|
||||
//- No copy construct
|
||||
departureDiameterModel(const departureDiameterModel&) = delete;
|
||||
|
||||
//- Disallow default bitwise assignment
|
||||
void operator=(const departureDiameterModel&);
|
||||
//- No copy assignment
|
||||
void operator=(const departureDiameterModel&) = delete;
|
||||
|
||||
|
||||
public:
|
||||
|
||||
@ -57,11 +57,11 @@ class departureFrequencyModel
|
||||
{
|
||||
// Private Member Functions
|
||||
|
||||
//- Disallow default bitwise copy construct
|
||||
departureFrequencyModel(const departureFrequencyModel&);
|
||||
//- No copy construct
|
||||
departureFrequencyModel(const departureFrequencyModel&) = delete;
|
||||
|
||||
//- Disallow default bitwise assignment
|
||||
void operator=(const departureFrequencyModel&);
|
||||
//- No copy assignment
|
||||
void operator=(const departureFrequencyModel&) = delete;
|
||||
|
||||
|
||||
public:
|
||||
|
||||
@ -57,11 +57,11 @@ class nucleationSiteModel
|
||||
{
|
||||
// Private Member Functions
|
||||
|
||||
//- Disallow default bitwise copy construct
|
||||
nucleationSiteModel(const nucleationSiteModel&);
|
||||
//- No copy construct
|
||||
nucleationSiteModel(const nucleationSiteModel&) = delete;
|
||||
|
||||
//- Disallow default bitwise assignment
|
||||
void operator=(const nucleationSiteModel&);
|
||||
//- No copy assignment
|
||||
void operator=(const nucleationSiteModel&) = delete;
|
||||
|
||||
|
||||
public:
|
||||
|
||||
@ -55,11 +55,11 @@ class partitioningModel
|
||||
{
|
||||
// Private Member Functions
|
||||
|
||||
//- Disallow default bitwise copy construct
|
||||
partitioningModel(const partitioningModel&);
|
||||
//- No copy construct
|
||||
partitioningModel(const partitioningModel&) = delete;
|
||||
|
||||
//- Disallow default bitwise assignment
|
||||
void operator=(const partitioningModel&);
|
||||
//- No copy assignment
|
||||
void operator=(const partitioningModel&) = delete;
|
||||
|
||||
|
||||
public:
|
||||
|
||||
@ -52,11 +52,11 @@ class conductivityModel
|
||||
{
|
||||
// Private member functions
|
||||
|
||||
//- Disallow default bitwise copy construct
|
||||
conductivityModel(const conductivityModel&);
|
||||
//- No copy construct
|
||||
conductivityModel(const conductivityModel&) = delete;
|
||||
|
||||
//- Disallow default bitwise assignment
|
||||
void operator=(const conductivityModel&);
|
||||
//- No copy assignment
|
||||
void operator=(const conductivityModel&) = delete;
|
||||
|
||||
|
||||
protected:
|
||||
|
||||
@ -53,11 +53,11 @@ class frictionalStressModel
|
||||
{
|
||||
// Private member functions
|
||||
|
||||
//- Disallow default bitwise copy construct
|
||||
frictionalStressModel(const frictionalStressModel&);
|
||||
//- No copy construct
|
||||
frictionalStressModel(const frictionalStressModel&) = delete;
|
||||
|
||||
//- Disallow default bitwise assignment
|
||||
void operator=(const frictionalStressModel&);
|
||||
//- No copy assignment
|
||||
void operator=(const frictionalStressModel&) = delete;
|
||||
|
||||
|
||||
protected:
|
||||
|
||||
@ -52,11 +52,11 @@ class granularPressureModel
|
||||
{
|
||||
// Private member functions
|
||||
|
||||
//- Disallow default bitwise copy construct
|
||||
granularPressureModel(const granularPressureModel&);
|
||||
//- No copy construct
|
||||
granularPressureModel(const granularPressureModel&) = delete;
|
||||
|
||||
//- Disallow default bitwise assignment
|
||||
void operator=(const granularPressureModel&);
|
||||
//- No copy assignment
|
||||
void operator=(const granularPressureModel&) = delete;
|
||||
|
||||
|
||||
protected:
|
||||
|
||||
@ -147,11 +147,11 @@ class kineticTheoryModel
|
||||
void correctNut()
|
||||
{}
|
||||
|
||||
//- Disallow default bitwise copy construct
|
||||
kineticTheoryModel(const kineticTheoryModel&);
|
||||
//- No copy construct
|
||||
kineticTheoryModel(const kineticTheoryModel&) = delete;
|
||||
|
||||
//- Disallow default bitwise assignment
|
||||
void operator=(const kineticTheoryModel&);
|
||||
//- No copy assignment
|
||||
void operator=(const kineticTheoryModel&) = delete;
|
||||
|
||||
|
||||
public:
|
||||
|
||||
@ -52,11 +52,11 @@ class radialModel
|
||||
{
|
||||
// Private member functions
|
||||
|
||||
//- Disallow default bitwise copy construct
|
||||
radialModel(const radialModel&);
|
||||
//- No copy construct
|
||||
radialModel(const radialModel&) = delete;
|
||||
|
||||
//- Disallow default bitwise assignment
|
||||
void operator=(const radialModel&);
|
||||
//- No copy assignment
|
||||
void operator=(const radialModel&) = delete;
|
||||
|
||||
|
||||
protected:
|
||||
|
||||
@ -54,11 +54,11 @@ class viscosityModel
|
||||
{
|
||||
// Private member functions
|
||||
|
||||
//- Disallow default bitwise copy construct
|
||||
viscosityModel(const viscosityModel&);
|
||||
//- No copy construct
|
||||
viscosityModel(const viscosityModel&) = delete;
|
||||
|
||||
//- Disallow default bitwise assignment
|
||||
void operator=(const viscosityModel&);
|
||||
//- No copy assignment
|
||||
void operator=(const viscosityModel&) = delete;
|
||||
|
||||
|
||||
protected:
|
||||
|
||||
@ -102,11 +102,11 @@ class phasePressureModel
|
||||
void correctNut()
|
||||
{}
|
||||
|
||||
//- Disallow default bitwise copy construct
|
||||
phasePressureModel(const phasePressureModel&);
|
||||
//- No copy construct
|
||||
phasePressureModel(const phasePressureModel&) = delete;
|
||||
|
||||
//- Disallow default bitwise assignment
|
||||
void operator=(const phasePressureModel&);
|
||||
//- No copy assignment
|
||||
void operator=(const phasePressureModel&) = delete;
|
||||
|
||||
|
||||
public:
|
||||
|
||||
@ -58,11 +58,11 @@ class wallDependentModel
|
||||
|
||||
// Private Member Functions
|
||||
|
||||
//- Disallow default bitwise copy construct
|
||||
wallDependentModel(const wallDependentModel&);
|
||||
//- No copy construct
|
||||
wallDependentModel(const wallDependentModel&) = delete;
|
||||
|
||||
//- Disallow default bitwise assignment
|
||||
void operator=(const wallDependentModel&);
|
||||
//- No copy assignment
|
||||
void operator=(const wallDependentModel&) = delete;
|
||||
|
||||
|
||||
public:
|
||||
|
||||
@ -52,11 +52,11 @@ class conductivityModel
|
||||
{
|
||||
// Private member functions
|
||||
|
||||
//- Disallow default bitwise copy construct
|
||||
conductivityModel(const conductivityModel&);
|
||||
//- No copy construct
|
||||
conductivityModel(const conductivityModel&) = delete;
|
||||
|
||||
//- Disallow default bitwise assignment
|
||||
void operator=(const conductivityModel&);
|
||||
//- No copy assignment
|
||||
void operator=(const conductivityModel&) = delete;
|
||||
|
||||
|
||||
protected:
|
||||
|
||||
@ -53,11 +53,11 @@ class frictionalStressModel
|
||||
{
|
||||
// Private member functions
|
||||
|
||||
//- Disallow default bitwise copy construct
|
||||
frictionalStressModel(const frictionalStressModel&);
|
||||
//- No copy construct
|
||||
frictionalStressModel(const frictionalStressModel&) = delete;
|
||||
|
||||
//- Disallow default bitwise assignment
|
||||
void operator=(const frictionalStressModel&);
|
||||
//- No copy assignment
|
||||
void operator=(const frictionalStressModel&) = delete;
|
||||
|
||||
|
||||
protected:
|
||||
|
||||
@ -52,11 +52,11 @@ class granularPressureModel
|
||||
{
|
||||
// Private member functions
|
||||
|
||||
//- Disallow default bitwise copy construct
|
||||
granularPressureModel(const granularPressureModel&);
|
||||
//- No copy construct
|
||||
granularPressureModel(const granularPressureModel&) = delete;
|
||||
|
||||
//- Disallow default bitwise assignment
|
||||
void operator=(const granularPressureModel&);
|
||||
//- No copy assignment
|
||||
void operator=(const granularPressureModel&) = delete;
|
||||
|
||||
|
||||
protected:
|
||||
|
||||
@ -147,11 +147,11 @@ class kineticTheoryModel
|
||||
void correctNut()
|
||||
{}
|
||||
|
||||
//- Disallow default bitwise copy construct
|
||||
kineticTheoryModel(const kineticTheoryModel&);
|
||||
//- No copy construct
|
||||
kineticTheoryModel(const kineticTheoryModel&) = delete;
|
||||
|
||||
//- Disallow default bitwise assignment
|
||||
void operator=(const kineticTheoryModel&);
|
||||
//- No copy assignment
|
||||
void operator=(const kineticTheoryModel&) = delete;
|
||||
|
||||
|
||||
public:
|
||||
|
||||
@ -52,11 +52,11 @@ class radialModel
|
||||
{
|
||||
// Private member functions
|
||||
|
||||
//- Disallow default bitwise copy construct
|
||||
radialModel(const radialModel&);
|
||||
//- No copy construct
|
||||
radialModel(const radialModel&) = delete;
|
||||
|
||||
//- Disallow default bitwise assignment
|
||||
void operator=(const radialModel&);
|
||||
//- No copy assignment
|
||||
void operator=(const radialModel&) = delete;
|
||||
|
||||
|
||||
protected:
|
||||
|
||||
@ -54,11 +54,11 @@ class viscosityModel
|
||||
{
|
||||
// Private member functions
|
||||
|
||||
//- Disallow default bitwise copy construct
|
||||
viscosityModel(const viscosityModel&);
|
||||
//- No copy construct
|
||||
viscosityModel(const viscosityModel&) = delete;
|
||||
|
||||
//- Disallow default bitwise assignment
|
||||
void operator=(const viscosityModel&);
|
||||
//- No copy assignment
|
||||
void operator=(const viscosityModel&) = delete;
|
||||
|
||||
|
||||
protected:
|
||||
|
||||
@ -106,11 +106,11 @@ class phasePressureModel
|
||||
void correctNut()
|
||||
{}
|
||||
|
||||
//- Disallow default bitwise copy construct
|
||||
phasePressureModel(const phasePressureModel&);
|
||||
//- No copy construct
|
||||
phasePressureModel(const phasePressureModel&) = delete;
|
||||
|
||||
//- Disallow default bitwise assignment
|
||||
void operator=(const phasePressureModel&);
|
||||
//- No copy assignment
|
||||
void operator=(const phasePressureModel&) = delete;
|
||||
|
||||
|
||||
public:
|
||||
|
||||
@ -81,11 +81,14 @@ class BlendedInterfacialModel
|
||||
|
||||
// Private Member Functions
|
||||
|
||||
//- Disallow default bitwise copy construct
|
||||
BlendedInterfacialModel(const BlendedInterfacialModel<modelType>&);
|
||||
//- No copy construct
|
||||
BlendedInterfacialModel
|
||||
(
|
||||
const BlendedInterfacialModel&
|
||||
) = delete;
|
||||
|
||||
//- Disallow default bitwise assignment
|
||||
void operator=(const BlendedInterfacialModel<modelType>&);
|
||||
//- No copy assignment
|
||||
void operator=(const BlendedInterfacialModel<modelType>&) = delete;
|
||||
|
||||
//- Correct coeff/value on fixed flux boundary conditions
|
||||
template<class GeometricField>
|
||||
|
||||
@ -113,8 +113,10 @@ private:
|
||||
|
||||
// Private Member Functions
|
||||
|
||||
//- Disallow bitwise copy/assignment
|
||||
//- No copy construct
|
||||
dictionaryTokens(const dictionaryTokens&) = delete;
|
||||
|
||||
//- No copy assignment
|
||||
void operator=(const dictionaryTokens&) = delete;
|
||||
|
||||
|
||||
@ -181,8 +183,10 @@ class dictionaryTokens::primitive_iterator
|
||||
|
||||
// Private Member Functions
|
||||
|
||||
//- Disallow bitwise copy/assignment
|
||||
//- No copy construct
|
||||
primitive_iterator(const primitive_iterator&) = delete;
|
||||
|
||||
//- No copy assignment
|
||||
void operator=(const primitive_iterator&) = delete;
|
||||
|
||||
public:
|
||||
@ -251,8 +255,10 @@ class dictionaryTokens::dictionary_iterator
|
||||
|
||||
// Private Member Functions
|
||||
|
||||
//- Disallow bitwise copy/assignment
|
||||
//- No copy construct
|
||||
dictionary_iterator(const dictionary_iterator&) = delete;
|
||||
|
||||
//- No copy assignment
|
||||
void operator=(const dictionary_iterator&) = delete;
|
||||
|
||||
|
||||
|
||||
@ -159,11 +159,11 @@ class router
|
||||
DynamicList<label>& route
|
||||
) const;
|
||||
|
||||
//- Disallow default bitwise copy construct
|
||||
router(const router&);
|
||||
//- No copy construct
|
||||
router(const router&) = delete;
|
||||
|
||||
//- Disallow default bitwise assignment
|
||||
void operator=(const router&);
|
||||
//- No copy assignment
|
||||
void operator=(const router&) = delete;
|
||||
|
||||
|
||||
public:
|
||||
|
||||
@ -91,11 +91,11 @@ class cellSplitter
|
||||
const Map<labelList>& cellToCells
|
||||
) const;
|
||||
|
||||
//- Disallow default bitwise copy construct
|
||||
cellSplitter(const cellSplitter&);
|
||||
//- No copy construct
|
||||
cellSplitter(const cellSplitter&) = delete;
|
||||
|
||||
//- Disallow default bitwise assignment
|
||||
void operator=(const cellSplitter&);
|
||||
//- No copy assignment
|
||||
void operator=(const cellSplitter&) = delete;
|
||||
|
||||
public:
|
||||
|
||||
|
||||
@ -68,11 +68,11 @@ class edgeStats
|
||||
direction getNormalDir(const twoDPointCorrector*) const;
|
||||
|
||||
|
||||
//- Disallow default bitwise copy construct
|
||||
edgeStats(const edgeStats&);
|
||||
//- No copy construct
|
||||
edgeStats(const edgeStats&) = delete;
|
||||
|
||||
//- Disallow default bitwise assignment
|
||||
void operator=(const edgeStats&);
|
||||
//- No copy assignment
|
||||
void operator=(const edgeStats&) = delete;
|
||||
|
||||
|
||||
public:
|
||||
|
||||
@ -74,11 +74,11 @@ class hexBlock
|
||||
|
||||
// Private Member Functions
|
||||
|
||||
//- Disallow default bitwise copy construct
|
||||
hexBlock(const hexBlock&);
|
||||
//- No copy construct
|
||||
hexBlock(const hexBlock&) = delete;
|
||||
|
||||
//- Disallow default bitwise assignment
|
||||
void operator=(const hexBlock&);
|
||||
//- No copy assignment
|
||||
void operator=(const hexBlock&) = delete;
|
||||
|
||||
//- Vertex addressing inside the block
|
||||
inline label vtxLabel(label i, label j, label k) const;
|
||||
|
||||
@ -67,11 +67,11 @@ class hexBlock
|
||||
|
||||
// Private Member Functions
|
||||
|
||||
//- Disallow default bitwise copy construct
|
||||
hexBlock(const hexBlock&);
|
||||
//- No copy construct
|
||||
hexBlock(const hexBlock&) = delete;
|
||||
|
||||
//- Disallow default bitwise assignment
|
||||
void operator=(const hexBlock&);
|
||||
//- No copy assignment
|
||||
void operator=(const hexBlock&) = delete;
|
||||
|
||||
//- Vertex addressing inside the block
|
||||
inline label vtxLabel(label i, label j, label k) const;
|
||||
|
||||
@ -86,10 +86,10 @@ class extrudedMesh
|
||||
);
|
||||
|
||||
|
||||
//- Disallow default bitwise copy construct
|
||||
//- No copy construct
|
||||
extrudedMesh(const extrudedMesh&) = delete;
|
||||
|
||||
//- Disallow default bitwise assignment
|
||||
//- No copy assignment
|
||||
void operator=(const extrudedMesh&) = delete;
|
||||
|
||||
|
||||
|
||||
@ -87,11 +87,11 @@ class extrude2DMesh
|
||||
//- Find extrusion direction
|
||||
//void findExtrudeDirection();
|
||||
|
||||
//- Disallow default bitwise copy construct
|
||||
extrude2DMesh(const extrude2DMesh&);
|
||||
//- No copy construct
|
||||
extrude2DMesh(const extrude2DMesh&) = delete;
|
||||
|
||||
//- Disallow default bitwise assignment
|
||||
void operator=(const extrude2DMesh&);
|
||||
//- No copy assignment
|
||||
void operator=(const extrude2DMesh&) = delete;
|
||||
|
||||
public:
|
||||
|
||||
|
||||
@ -85,11 +85,11 @@ class patchToPoly2DMesh
|
||||
|
||||
void createPolyMeshComponents();
|
||||
|
||||
//- Disallow default bitwise copy construct
|
||||
patchToPoly2DMesh(const patchToPoly2DMesh&);
|
||||
//- No copy construct
|
||||
patchToPoly2DMesh(const patchToPoly2DMesh&) = delete;
|
||||
|
||||
//- Disallow default bitwise assignment
|
||||
void operator=(const patchToPoly2DMesh&);
|
||||
//- No copy assignment
|
||||
void operator=(const patchToPoly2DMesh&) = delete;
|
||||
|
||||
|
||||
public:
|
||||
|
||||
@ -70,11 +70,11 @@ class cv2DControls
|
||||
|
||||
// Private Member Functions
|
||||
|
||||
//- Disallow default bitwise copy construct
|
||||
cv2DControls(const cv2DControls&);
|
||||
//- No copy construct
|
||||
cv2DControls(const cv2DControls&) = delete;
|
||||
|
||||
//- Disallow default bitwise assignment
|
||||
void operator=(const cv2DControls&);
|
||||
//- No copy assignment
|
||||
void operator=(const cv2DControls&) = delete;
|
||||
|
||||
|
||||
public:
|
||||
|
||||
@ -142,11 +142,11 @@ private:
|
||||
const List<DynamicList<label>>& patchOwners
|
||||
) const;
|
||||
|
||||
//- Disallow default bitwise copy construct
|
||||
DelaunayMesh(const DelaunayMesh<Triangulation>&);
|
||||
//- No copy construct
|
||||
DelaunayMesh(const DelaunayMesh<Triangulation>&) = delete;
|
||||
|
||||
//- Disallow default bitwise assignment
|
||||
void operator=(const DelaunayMesh<Triangulation>&);
|
||||
//- No copy assignment
|
||||
void operator=(const DelaunayMesh<Triangulation>&) = delete;
|
||||
|
||||
|
||||
public:
|
||||
|
||||
@ -119,11 +119,14 @@ private:
|
||||
labelPairHashSet& receivedVertices
|
||||
);
|
||||
|
||||
//- Disallow default bitwise copy construct
|
||||
DistributedDelaunayMesh(const DistributedDelaunayMesh<Triangulation>&);
|
||||
//- No copy construct
|
||||
DistributedDelaunayMesh
|
||||
(
|
||||
const DistributedDelaunayMesh&
|
||||
) = delete;
|
||||
|
||||
//- Disallow default bitwise assignment
|
||||
void operator=(const DistributedDelaunayMesh<Triangulation>&);
|
||||
//- No copy assignment
|
||||
void operator=(const DistributedDelaunayMesh<Triangulation>&) = delete;
|
||||
|
||||
|
||||
public:
|
||||
|
||||
@ -193,22 +193,4 @@ void Foam::PrintTable<KeyType, DataType>::print
|
||||
}
|
||||
|
||||
|
||||
// * * * * * * * * * * * * * * Member Operators * * * * * * * * * * * * * * //
|
||||
|
||||
template<class KeyType, class DataType>
|
||||
void Foam::PrintTable<KeyType, DataType>::operator=
|
||||
(
|
||||
const PrintTable<KeyType, DataType>& rhs
|
||||
)
|
||||
{
|
||||
// Check for assignment to self
|
||||
if (this == &rhs)
|
||||
{
|
||||
FatalErrorInFunction
|
||||
<< "Attempted assignment to self"
|
||||
<< abort(FatalError);
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
// ************************************************************************* //
|
||||
|
||||
@ -82,8 +82,8 @@ class PrintTable
|
||||
|
||||
// Private Member Functions
|
||||
|
||||
//- Disallow default bitwise assignment
|
||||
void operator=(const PrintTable<KeyType, DataType>&);
|
||||
//- No copy assignment
|
||||
void operator=(const PrintTable<KeyType, DataType>&) = delete;
|
||||
|
||||
|
||||
public:
|
||||
@ -107,7 +107,7 @@ public:
|
||||
// Member Functions
|
||||
|
||||
//- Add an entry (D) to the given key(K)
|
||||
void add(const KeyType& K, const DataType& D);
|
||||
inline void add(const KeyType& K, const DataType& D);
|
||||
|
||||
//- Print the table
|
||||
void print
|
||||
|
||||
@ -26,7 +26,7 @@ License
|
||||
// * * * * * * * * * * * * * * * Member Functions * * * * * * * * * * * * * //
|
||||
|
||||
template<class KeyType, class DataType>
|
||||
void Foam::PrintTable<KeyType, DataType>::add
|
||||
inline void Foam::PrintTable<KeyType, DataType>::add
|
||||
(
|
||||
const KeyType& K,
|
||||
const DataType& D
|
||||
@ -35,8 +35,4 @@ void Foam::PrintTable<KeyType, DataType>::add
|
||||
table_.set(K, D);
|
||||
}
|
||||
|
||||
|
||||
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
||||
|
||||
|
||||
// ************************************************************************* //
|
||||
|
||||
@ -177,11 +177,14 @@ class backgroundMeshDecomposition
|
||||
//- Build the surface patch and search tree
|
||||
void buildPatchAndTree();
|
||||
|
||||
//- Disallow default bitwise copy construct
|
||||
backgroundMeshDecomposition(const backgroundMeshDecomposition&);
|
||||
//- No copy construct
|
||||
backgroundMeshDecomposition
|
||||
(
|
||||
const backgroundMeshDecomposition&
|
||||
) = delete;
|
||||
|
||||
//- Disallow default bitwise assignment
|
||||
void operator=(const backgroundMeshDecomposition&);
|
||||
//- No copy assignment
|
||||
void operator=(const backgroundMeshDecomposition&) = delete;
|
||||
|
||||
|
||||
public:
|
||||
|
||||
@ -61,11 +61,11 @@ class cellAspectRatioControl
|
||||
|
||||
// Private Member Functions
|
||||
|
||||
//- Disallow default bitwise copy construct
|
||||
cellAspectRatioControl(const cellAspectRatioControl&);
|
||||
//- No copy construct
|
||||
cellAspectRatioControl(const cellAspectRatioControl&) = delete;
|
||||
|
||||
//- Disallow default bitwise assignment
|
||||
void operator=(const cellAspectRatioControl&);
|
||||
//- No copy assignment
|
||||
void operator=(const cellAspectRatioControl&) = delete;
|
||||
|
||||
|
||||
public:
|
||||
|
||||
@ -85,11 +85,11 @@ class cellShapeControl
|
||||
|
||||
// Private Member Functions
|
||||
|
||||
//- Disallow default bitwise copy construct
|
||||
cellShapeControl(const cellShapeControl&);
|
||||
//- No copy construct
|
||||
cellShapeControl(const cellShapeControl&) = delete;
|
||||
|
||||
//- Disallow default bitwise assignment
|
||||
void operator=(const cellShapeControl&);
|
||||
//- No copy assignment
|
||||
void operator=(const cellShapeControl&) = delete;
|
||||
|
||||
|
||||
public:
|
||||
|
||||
@ -83,11 +83,11 @@ private:
|
||||
|
||||
// Private Member Functions
|
||||
|
||||
//- Disallow default bitwise copy construct
|
||||
cellShapeControlMesh(const cellShapeControlMesh&);
|
||||
//- No copy construct
|
||||
cellShapeControlMesh(const cellShapeControlMesh&) = delete;
|
||||
|
||||
//- Disallow default bitwise assignment
|
||||
void operator=(const cellShapeControlMesh&);
|
||||
//- No copy assignment
|
||||
void operator=(const cellShapeControlMesh&) = delete;
|
||||
|
||||
|
||||
public:
|
||||
|
||||
@ -71,11 +71,14 @@ private:
|
||||
|
||||
// Private Member Functions
|
||||
|
||||
//- Disallow default bitwise copy construct
|
||||
cellSizeAndAlignmentControl(const cellSizeAndAlignmentControl&);
|
||||
//- No copy construct
|
||||
cellSizeAndAlignmentControl
|
||||
(
|
||||
const cellSizeAndAlignmentControl&
|
||||
) = delete;
|
||||
|
||||
//- Disallow default bitwise assignment
|
||||
void operator=(const cellSizeAndAlignmentControl&);
|
||||
//- No copy assignment
|
||||
void operator=(const cellSizeAndAlignmentControl&) = delete;
|
||||
|
||||
|
||||
public:
|
||||
|
||||
@ -68,11 +68,14 @@ class cellSizeAndAlignmentControls
|
||||
label& maxPriority
|
||||
) const;
|
||||
|
||||
//- Disallow default bitwise copy construct
|
||||
cellSizeAndAlignmentControls(const cellSizeAndAlignmentControls&);
|
||||
//- No copy construct
|
||||
cellSizeAndAlignmentControls
|
||||
(
|
||||
const cellSizeAndAlignmentControls&
|
||||
) = delete;
|
||||
|
||||
//- Disallow default bitwise assignment
|
||||
void operator=(const cellSizeAndAlignmentControls&);
|
||||
//- No copy assignment
|
||||
void operator=(const cellSizeAndAlignmentControls&) = delete;
|
||||
|
||||
|
||||
public:
|
||||
|
||||
@ -63,11 +63,11 @@ class fileControl
|
||||
|
||||
// Private Member Functions
|
||||
|
||||
//- Disallow default bitwise copy construct
|
||||
fileControl(const fileControl&);
|
||||
//- No copy construct
|
||||
fileControl(const fileControl&) = delete;
|
||||
|
||||
//- Disallow default bitwise assignment
|
||||
void operator=(const fileControl&);
|
||||
//- No copy assignment
|
||||
void operator=(const fileControl&) = delete;
|
||||
|
||||
|
||||
public:
|
||||
|
||||
@ -88,11 +88,11 @@ class searchableSurfaceControl
|
||||
// const vectorField& ptNormals
|
||||
// ) const;
|
||||
|
||||
//- Disallow default bitwise copy construct
|
||||
searchableSurfaceControl(const searchableSurfaceControl&);
|
||||
//- No copy construct
|
||||
searchableSurfaceControl(const searchableSurfaceControl&) = delete;
|
||||
|
||||
//- Disallow default bitwise assignment
|
||||
void operator=(const searchableSurfaceControl&);
|
||||
//- No copy assignment
|
||||
void operator=(const searchableSurfaceControl&) = delete;
|
||||
|
||||
|
||||
public:
|
||||
|
||||
@ -99,11 +99,11 @@ class controlMeshRefinement
|
||||
|
||||
pointHit findDiscontinuities(const linePointRef& l) const;
|
||||
|
||||
//- Disallow default bitwise copy construct
|
||||
controlMeshRefinement(const controlMeshRefinement&);
|
||||
//- No copy construct
|
||||
controlMeshRefinement(const controlMeshRefinement&) = delete;
|
||||
|
||||
//- Disallow default bitwise assignment
|
||||
void operator=(const controlMeshRefinement&);
|
||||
//- No copy assignment
|
||||
void operator=(const controlMeshRefinement&) = delete;
|
||||
|
||||
|
||||
public:
|
||||
|
||||
@ -91,11 +91,11 @@ class smoothAlignmentSolver
|
||||
triad& t
|
||||
) const;
|
||||
|
||||
//- Disallow default bitwise copy construct
|
||||
smoothAlignmentSolver(const smoothAlignmentSolver&);
|
||||
//- No copy construct
|
||||
smoothAlignmentSolver(const smoothAlignmentSolver&) = delete;
|
||||
|
||||
//- Disallow default bitwise assignment
|
||||
void operator=(const smoothAlignmentSolver&);
|
||||
//- No copy assignment
|
||||
void operator=(const smoothAlignmentSolver&) = delete;
|
||||
|
||||
|
||||
public:
|
||||
|
||||
@ -110,11 +110,11 @@ private:
|
||||
|
||||
// Private Member Functions
|
||||
|
||||
//- Disallow default bitwise copy construct
|
||||
cellSizeFunction(const cellSizeFunction&);
|
||||
//- No copy construct
|
||||
cellSizeFunction(const cellSizeFunction&) = delete;
|
||||
|
||||
//- Disallow default bitwise assignment
|
||||
void operator=(const cellSizeFunction&);
|
||||
//- No copy assignment
|
||||
void operator=(const cellSizeFunction&) = delete;
|
||||
|
||||
|
||||
public:
|
||||
|
||||
@ -67,11 +67,11 @@ private:
|
||||
|
||||
// Private Member Functions
|
||||
|
||||
//- Disallow default bitwise copy construct
|
||||
cellSizeCalculationType(const cellSizeCalculationType&);
|
||||
//- No copy construct
|
||||
cellSizeCalculationType(const cellSizeCalculationType&) = delete;
|
||||
|
||||
//- Disallow default bitwise assignment
|
||||
void operator=(const cellSizeCalculationType&);
|
||||
//- No copy assignment
|
||||
void operator=(const cellSizeCalculationType&) = delete;
|
||||
|
||||
|
||||
public:
|
||||
|
||||
@ -75,11 +75,11 @@ private:
|
||||
|
||||
// Private Member Functions
|
||||
|
||||
//- Disallow default bitwise copy construct
|
||||
surfaceCellSizeFunction(const surfaceCellSizeFunction&);
|
||||
//- No copy construct
|
||||
surfaceCellSizeFunction(const surfaceCellSizeFunction&) = delete;
|
||||
|
||||
//- Disallow default bitwise assignment
|
||||
void operator=(const surfaceCellSizeFunction&);
|
||||
//- No copy assignment
|
||||
void operator=(const surfaceCellSizeFunction&) = delete;
|
||||
|
||||
|
||||
public:
|
||||
|
||||
@ -850,11 +850,11 @@ private:
|
||||
|
||||
void writePointPairs(const fileName& fName) const;
|
||||
|
||||
//- Disallow default bitwise copy construct
|
||||
conformalVoronoiMesh(const conformalVoronoiMesh&);
|
||||
//- No copy construct
|
||||
conformalVoronoiMesh(const conformalVoronoiMesh&) = delete;
|
||||
|
||||
//- Disallow default bitwise assignment
|
||||
void operator=(const conformalVoronoiMesh&);
|
||||
//- No copy assignment
|
||||
void operator=(const conformalVoronoiMesh&) = delete;
|
||||
|
||||
|
||||
public:
|
||||
|
||||
@ -133,11 +133,11 @@ class featurePointConformer
|
||||
//- Create the points that will conform to the feature
|
||||
void createFeaturePoints(DynamicList<Vb>& pts);
|
||||
|
||||
//- Disallow default bitwise copy construct
|
||||
featurePointConformer(const featurePointConformer&);
|
||||
//- No copy construct
|
||||
featurePointConformer(const featurePointConformer&) = delete;
|
||||
|
||||
//- Disallow default bitwise assignment
|
||||
void operator=(const featurePointConformer&);
|
||||
//- No copy assignment
|
||||
void operator=(const featurePointConformer&) = delete;
|
||||
|
||||
|
||||
public:
|
||||
|
||||
@ -125,11 +125,11 @@ class conformationSurfaces
|
||||
label& featureIndex
|
||||
);
|
||||
|
||||
//- Disallow default bitwise copy construct
|
||||
conformationSurfaces(const conformationSurfaces&);
|
||||
//- No copy construct
|
||||
conformationSurfaces(const conformationSurfaces&) = delete;
|
||||
|
||||
//- Disallow default bitwise assignment
|
||||
void operator=(const conformationSurfaces&);
|
||||
//- No copy assignment
|
||||
void operator=(const conformationSurfaces&) = delete;
|
||||
|
||||
|
||||
public:
|
||||
|
||||
@ -209,11 +209,11 @@ class cvControls
|
||||
|
||||
// Private Member Functions
|
||||
|
||||
//- Disallow default bitwise copy construct
|
||||
cvControls(const cvControls&);
|
||||
//- No copy construct
|
||||
cvControls(const cvControls&) = delete;
|
||||
|
||||
//- Disallow default bitwise assignment
|
||||
void operator=(const cvControls&);
|
||||
//- No copy assignment
|
||||
void operator=(const cvControls&) = delete;
|
||||
|
||||
|
||||
public:
|
||||
|
||||
@ -68,11 +68,11 @@ private:
|
||||
|
||||
// Private Member Functions
|
||||
|
||||
//- Disallow default bitwise copy construct
|
||||
faceAreaWeightModel(const faceAreaWeightModel&);
|
||||
//- No copy construct
|
||||
faceAreaWeightModel(const faceAreaWeightModel&) = delete;
|
||||
|
||||
//- Disallow default bitwise assignment
|
||||
void operator=(const faceAreaWeightModel&);
|
||||
//- No copy assignment
|
||||
void operator=(const faceAreaWeightModel&) = delete;
|
||||
|
||||
|
||||
public:
|
||||
|
||||
@ -87,11 +87,11 @@ private:
|
||||
|
||||
// Private Member Functions
|
||||
|
||||
//- Disallow default bitwise copy construct
|
||||
initialPointsMethod(const initialPointsMethod&);
|
||||
//- No copy construct
|
||||
initialPointsMethod(const initialPointsMethod&) = delete;
|
||||
|
||||
//- Disallow default bitwise assignment
|
||||
void operator=(const initialPointsMethod&);
|
||||
//- No copy assignment
|
||||
void operator=(const initialPointsMethod&) = delete;
|
||||
|
||||
|
||||
public:
|
||||
|
||||
@ -70,11 +70,11 @@ private:
|
||||
|
||||
// Private Member Functions
|
||||
|
||||
//- Disallow default bitwise copy construct
|
||||
relaxationModel(const relaxationModel&);
|
||||
//- No copy construct
|
||||
relaxationModel(const relaxationModel&) = delete;
|
||||
|
||||
//- Disallow default bitwise assignment
|
||||
void operator=(const relaxationModel&);
|
||||
//- No copy assignment
|
||||
void operator=(const relaxationModel&) = delete;
|
||||
|
||||
|
||||
public:
|
||||
|
||||
@ -59,11 +59,11 @@ private:
|
||||
|
||||
// Private Member Functions
|
||||
|
||||
//- Disallow default bitwise copy construct
|
||||
searchableBoxFeatures(const searchableBoxFeatures&);
|
||||
//- No copy construct
|
||||
searchableBoxFeatures(const searchableBoxFeatures&) = delete;
|
||||
|
||||
//- Disallow default bitwise assignment
|
||||
void operator=(const searchableBoxFeatures&);
|
||||
//- No copy assignment
|
||||
void operator=(const searchableBoxFeatures&) = delete;
|
||||
|
||||
|
||||
public:
|
||||
|
||||
@ -63,11 +63,11 @@ private:
|
||||
|
||||
// Private Member Functions
|
||||
|
||||
//- Disallow default bitwise copy construct
|
||||
searchablePlateFeatures(const searchablePlateFeatures&);
|
||||
//- No copy construct
|
||||
searchablePlateFeatures(const searchablePlateFeatures&) = delete;
|
||||
|
||||
//- Disallow default bitwise assignment
|
||||
void operator=(const searchablePlateFeatures&);
|
||||
//- No copy assignment
|
||||
void operator=(const searchablePlateFeatures&) = delete;
|
||||
|
||||
|
||||
public:
|
||||
|
||||
@ -60,11 +60,11 @@ class searchableSurfaceFeatures
|
||||
|
||||
// Private Member Functions
|
||||
|
||||
//- Disallow default bitwise copy construct
|
||||
searchableSurfaceFeatures(const searchableSurfaceFeatures&);
|
||||
//- No copy construct
|
||||
searchableSurfaceFeatures(const searchableSurfaceFeatures&) = delete;
|
||||
|
||||
//- Disallow default bitwise assignment
|
||||
void operator=(const searchableSurfaceFeatures&);
|
||||
//- No copy assignment
|
||||
void operator=(const searchableSurfaceFeatures&) = delete;
|
||||
|
||||
|
||||
public:
|
||||
|
||||
@ -61,11 +61,11 @@ private:
|
||||
|
||||
// Private Member Functions
|
||||
|
||||
//- Disallow default bitwise copy construct
|
||||
triSurfaceMeshFeatures(const triSurfaceMeshFeatures&);
|
||||
//- No copy construct
|
||||
triSurfaceMeshFeatures(const triSurfaceMeshFeatures&) = delete;
|
||||
|
||||
//- Disallow default bitwise assignment
|
||||
void operator=(const triSurfaceMeshFeatures&);
|
||||
//- No copy assignment
|
||||
void operator=(const triSurfaceMeshFeatures&) = delete;
|
||||
|
||||
|
||||
public:
|
||||
|
||||
@ -199,11 +199,11 @@ private:
|
||||
|
||||
// Private Member Functions
|
||||
|
||||
//- Disallow default bitwise copy construct
|
||||
CV2D(const CV2D&);
|
||||
//- No copy construct
|
||||
CV2D(const CV2D&) = delete;
|
||||
|
||||
//- Disallow default bitwise assignment
|
||||
void operator=(const CV2D&);
|
||||
//- No copy assignment
|
||||
void operator=(const CV2D&) = delete;
|
||||
|
||||
|
||||
//- Insert point and return it's index
|
||||
|
||||
@ -90,11 +90,11 @@ class shortEdgeFilter2D
|
||||
labelList& patchSizes
|
||||
) const;
|
||||
|
||||
//- Disallow default bitwise copy construct
|
||||
shortEdgeFilter2D(const shortEdgeFilter2D&);
|
||||
//- No copy construct
|
||||
shortEdgeFilter2D(const shortEdgeFilter2D&) = delete;
|
||||
|
||||
//- Disallow default bitwise assignment
|
||||
void operator=(const shortEdgeFilter2D&);
|
||||
//- No copy assignment
|
||||
void operator=(const shortEdgeFilter2D&) = delete;
|
||||
|
||||
|
||||
public:
|
||||
|
||||
@ -76,10 +76,10 @@ class mergePolyMesh
|
||||
|
||||
// Private Member Functions
|
||||
|
||||
//- Disallow default bitwise copy construct
|
||||
//- No copy construct
|
||||
mergePolyMesh(const mergePolyMesh&) = delete;
|
||||
|
||||
//- Disallow default bitwise assignment
|
||||
//- No copy assignment
|
||||
void operator=(const mergePolyMesh&) = delete;
|
||||
|
||||
|
||||
|
||||
@ -60,10 +60,10 @@ class mirrorFvMesh
|
||||
|
||||
// Private Member Functions
|
||||
|
||||
//- Disallow copy construct
|
||||
//- No copy construct
|
||||
mirrorFvMesh(const mirrorFvMesh&) = delete;
|
||||
|
||||
//- Disallow copy assignment
|
||||
//- No copy assignment
|
||||
void operator=(const mirrorFvMesh&) = delete;
|
||||
|
||||
|
||||
|
||||
@ -168,11 +168,11 @@ class meshDualiser
|
||||
boolList& donePFaces // pFaces visited
|
||||
) const;
|
||||
|
||||
//- Disallow default bitwise copy construct
|
||||
meshDualiser(const meshDualiser&);
|
||||
//- No copy construct
|
||||
meshDualiser(const meshDualiser&) = delete;
|
||||
|
||||
//- Disallow default bitwise assignment
|
||||
void operator=(const meshDualiser&);
|
||||
//- No copy assignment
|
||||
void operator=(const meshDualiser&) = delete;
|
||||
|
||||
|
||||
public:
|
||||
|
||||
@ -71,11 +71,11 @@ private:
|
||||
|
||||
// Private Member Functions
|
||||
|
||||
//- Disallow default bitwise copy construct
|
||||
dimFieldDecomposer(const dimFieldDecomposer&);
|
||||
//- No copy construct
|
||||
dimFieldDecomposer(const dimFieldDecomposer&) = delete;
|
||||
|
||||
//- Disallow default bitwise assignment
|
||||
void operator=(const dimFieldDecomposer&);
|
||||
//- No copy assignment
|
||||
void operator=(const dimFieldDecomposer&) = delete;
|
||||
|
||||
|
||||
public:
|
||||
|
||||
@ -252,11 +252,11 @@ private:
|
||||
|
||||
// Private Member Functions
|
||||
|
||||
//- Disallow default bitwise copy construct
|
||||
faFieldDecomposer(const faFieldDecomposer&);
|
||||
//- No copy construct
|
||||
faFieldDecomposer(const faFieldDecomposer&) = delete;
|
||||
|
||||
//- Disallow default bitwise assignment
|
||||
void operator=(const faFieldDecomposer&);
|
||||
//- No copy assignment
|
||||
void operator=(const faFieldDecomposer&) = delete;
|
||||
|
||||
|
||||
public:
|
||||
|
||||
@ -68,11 +68,11 @@ class lagrangianFieldDecomposer
|
||||
|
||||
// Private Member Functions
|
||||
|
||||
//- Disallow default bitwise copy construct
|
||||
lagrangianFieldDecomposer(const lagrangianFieldDecomposer&);
|
||||
//- No copy construct
|
||||
lagrangianFieldDecomposer(const lagrangianFieldDecomposer&) = delete;
|
||||
|
||||
//- Disallow default bitwise assignment
|
||||
void operator=(const lagrangianFieldDecomposer&);
|
||||
//- No copy assignment
|
||||
void operator=(const lagrangianFieldDecomposer&) = delete;
|
||||
|
||||
|
||||
public:
|
||||
|
||||
@ -125,11 +125,11 @@ private:
|
||||
|
||||
// Private Member Functions
|
||||
|
||||
//- Disallow default bitwise copy construct
|
||||
pointFieldDecomposer(const pointFieldDecomposer&);
|
||||
//- No copy construct
|
||||
pointFieldDecomposer(const pointFieldDecomposer&) = delete;
|
||||
|
||||
//- Disallow default bitwise assignment
|
||||
void operator=(const pointFieldDecomposer&);
|
||||
//- No copy assignment
|
||||
void operator=(const pointFieldDecomposer&) = delete;
|
||||
|
||||
|
||||
public:
|
||||
|
||||
@ -80,11 +80,11 @@ class faFieldReconstructor
|
||||
|
||||
// Private Member Functions
|
||||
|
||||
//- Disallow default bitwise copy construct
|
||||
faFieldReconstructor(const faFieldReconstructor&);
|
||||
//- No copy construct
|
||||
faFieldReconstructor(const faFieldReconstructor&) = delete;
|
||||
|
||||
//- Disallow default bitwise assignment
|
||||
void operator=(const faFieldReconstructor&);
|
||||
//- No copy assignment
|
||||
void operator=(const faFieldReconstructor&) = delete;
|
||||
|
||||
|
||||
public:
|
||||
|
||||
@ -84,11 +84,11 @@ class processorFaMeshes
|
||||
//- Read all meshes
|
||||
void read();
|
||||
|
||||
//- Disallow default bitwise copy construct
|
||||
processorFaMeshes(const processorFaMeshes&);
|
||||
//- No copy construct
|
||||
processorFaMeshes(const processorFaMeshes&) = delete;
|
||||
|
||||
//- Disallow default bitwise assignment
|
||||
void operator=(const processorFaMeshes&);
|
||||
//- No copy assignment
|
||||
void operator=(const processorFaMeshes&) = delete;
|
||||
|
||||
|
||||
public:
|
||||
|
||||
@ -80,11 +80,11 @@ class parFvFieldReconstructor
|
||||
//- Construct per-patch addressing
|
||||
void createPatchFaceMaps();
|
||||
|
||||
//- Disallow default bitwise copy construct
|
||||
parFvFieldReconstructor(const parFvFieldReconstructor&);
|
||||
//- No copy construct
|
||||
parFvFieldReconstructor(const parFvFieldReconstructor&) = delete;
|
||||
|
||||
//- Disallow default bitwise assignment
|
||||
void operator=(const parFvFieldReconstructor&);
|
||||
//- No copy assignment
|
||||
void operator=(const parFvFieldReconstructor&) = delete;
|
||||
|
||||
|
||||
public:
|
||||
|
||||
@ -77,11 +77,11 @@ class parLagrangianRedistributor
|
||||
|
||||
// Private Member Functions
|
||||
|
||||
//- Disallow default bitwise copy construct
|
||||
parLagrangianRedistributor(const parLagrangianRedistributor&);
|
||||
//- No copy construct
|
||||
parLagrangianRedistributor(const parLagrangianRedistributor&) = delete;
|
||||
|
||||
//- Disallow default bitwise assignment
|
||||
void operator=(const parLagrangianRedistributor&);
|
||||
//- No copy assignment
|
||||
void operator=(const parLagrangianRedistributor&) = delete;
|
||||
|
||||
|
||||
public:
|
||||
|
||||
@ -53,11 +53,14 @@ class passivePositionParticleCloud
|
||||
{
|
||||
// Private Member Functions
|
||||
|
||||
//- Disallow default bitwise copy construct
|
||||
passivePositionParticleCloud(const passivePositionParticleCloud&);
|
||||
//- No copy construct
|
||||
passivePositionParticleCloud
|
||||
(
|
||||
const passivePositionParticleCloud&
|
||||
) = delete;
|
||||
|
||||
//- Disallow default bitwise assignment
|
||||
void operator=(const passivePositionParticleCloud&);
|
||||
//- No copy assignment
|
||||
void operator=(const passivePositionParticleCloud&) = delete;
|
||||
|
||||
|
||||
public:
|
||||
|
||||
@ -92,10 +92,10 @@ class lagrangianWriter
|
||||
void writeVerts();
|
||||
|
||||
|
||||
//- Disallow default bitwise copy construct
|
||||
//- No copy construct
|
||||
lagrangianWriter(const lagrangianWriter&) = delete;
|
||||
|
||||
//- Disallow default bitwise assignment
|
||||
//- No copy assignment
|
||||
void operator=(const lagrangianWriter&) = delete;
|
||||
|
||||
|
||||
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user