mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-11-28 03:28:01 +00:00
Make private member functions private
Resolves bug-report http://openfoam.org/mantisbt/view.php?id=1969
This commit is contained in:
@ -107,10 +107,10 @@ class IndirectList
|
||||
{
|
||||
// Private Member Functions
|
||||
|
||||
//- Disable default assignment operator
|
||||
//- Disallow default assignment operator
|
||||
void operator=(const IndirectList<T>&);
|
||||
|
||||
//- Disable assignment from UIndirectList
|
||||
//- Disallow assignment from UIndirectList
|
||||
void operator=(const UIndirectList<T>&);
|
||||
|
||||
|
||||
|
||||
@ -2,7 +2,7 @@
|
||||
========= |
|
||||
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
|
||||
\\ / O peration |
|
||||
\\ / A nd | Copyright (C) 2011 OpenFOAM Foundation
|
||||
\\ / A nd | Copyright (C) 2011-2016 OpenFOAM Foundation
|
||||
\\/ M anipulation |
|
||||
-------------------------------------------------------------------------------
|
||||
License
|
||||
@ -72,6 +72,8 @@ protected:
|
||||
const cellZoneMesh& zoneMesh_;
|
||||
|
||||
|
||||
private:
|
||||
|
||||
// Private Member Functions
|
||||
|
||||
//- Disallow default bitwise copy construct
|
||||
|
||||
@ -2,7 +2,7 @@
|
||||
========= |
|
||||
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
|
||||
\\ / O peration |
|
||||
\\ / A nd | Copyright (C) 2011 OpenFOAM Foundation
|
||||
\\ / A nd | Copyright (C) 2011-2016 OpenFOAM Foundation
|
||||
\\/ M anipulation |
|
||||
-------------------------------------------------------------------------------
|
||||
License
|
||||
@ -71,6 +71,16 @@ class faceZone
|
||||
//- The name associated with the zone-labels dictionary entry
|
||||
static const word labelsName_;
|
||||
|
||||
|
||||
// Private Member Functions
|
||||
|
||||
//- Disallow default bitwise copy construct
|
||||
faceZone(const faceZone&);
|
||||
|
||||
//- Disallow default bitwise assignment
|
||||
void operator=(const faceZone&);
|
||||
|
||||
|
||||
protected:
|
||||
|
||||
// Protected data
|
||||
@ -98,13 +108,7 @@ protected:
|
||||
mutable labelList* mePtr_;
|
||||
|
||||
|
||||
// Private Member Functions
|
||||
|
||||
//- Disallow default bitwise copy construct
|
||||
faceZone(const faceZone&);
|
||||
|
||||
//- Disallow default bitwise assignment
|
||||
void operator=(const faceZone&);
|
||||
// Protected Member Functions
|
||||
|
||||
//- Build primitive patch
|
||||
void calcFaceZonePatch() const;
|
||||
|
||||
@ -62,7 +62,7 @@ class fvBoundaryMesh
|
||||
|
||||
// Private Member Functions
|
||||
|
||||
//- Disable default copy construct
|
||||
//- Disallow default copy construct
|
||||
fvBoundaryMesh(const fvBoundaryMesh&);
|
||||
|
||||
//- Disallow assignment
|
||||
|
||||
Reference in New Issue
Block a user