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

@ -159,12 +159,6 @@ class router
DynamicList<label>& route
) const;
//- Disallow default bitwise copy construction
router(const router&) = delete;
//- Disallow default bitwise assignment
void operator=(const router&) = delete;
public:
@ -177,6 +171,9 @@ public:
const List<point>& coords
);
//- Disallow default bitwise copy construction
router(const router&) = delete;
// Member Functions
@ -197,6 +194,11 @@ public:
//- Extract labels of route with given value.
labelList getRoute(const label pathValue) const;
// Member Operators
//- Disallow default bitwise assignment
void operator=(const router&) = delete;
};