Standardised the class declaration section comments to correspond to the foamNewSource template
This commit is contained in:
@ -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;
|
||||
};
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user