Standardised the class declaration section comments to correspond to the foamNewSource template

This commit is contained in:
Henry Weller
2019-06-19 15:01:35 +01:00
parent 4d297126d9
commit 213319ae30
165 changed files with 933 additions and 772 deletions

View File

@ -45,7 +45,6 @@ SourceFiles
namespace Foam
{
/*---------------------------------------------------------------------------*\
Class channelIndex Declaration
\*---------------------------------------------------------------------------*/
@ -93,10 +92,6 @@ class channelIndex
const labelList& startFaces
);
//- Disallow default bitwise copy construct and assignment
channelIndex(const channelIndex&) = delete;
void operator=(const channelIndex&);
public:
@ -114,6 +109,9 @@ public:
const direction dir
);
//- Disallow default bitwise copy construction
channelIndex(const channelIndex&) = delete;
// Member Functions
@ -137,6 +135,11 @@ public:
return y_;
}
// Member Operators
//- Disallow default bitwise assignment
void operator=(const channelIndex&);
};