Skip to content
Snippets Groups Projects
Commit 204e393d authored by andy's avatar andy
Browse files

STYLE: Minor code formatting

parent d46303b9
Branches
Tags
No related merge requests found
......@@ -42,7 +42,7 @@ namespace Foam
{
/*---------------------------------------------------------------------------*\
Class CuthillMcKeeRenumber Declaration
Class CuthillMcKeeRenumber Declaration
\*---------------------------------------------------------------------------*/
class CuthillMcKeeRenumber
......@@ -72,6 +72,7 @@ public:
//- Construct given the renumber dictionary
CuthillMcKeeRenumber(const dictionary& renumberDict);
//- Destructor
virtual ~CuthillMcKeeRenumber()
{}
......@@ -103,7 +104,6 @@ public:
const labelListList& cellCells,
const pointField& cc
);
};
......
......@@ -41,7 +41,7 @@ namespace Foam
{
/*---------------------------------------------------------------------------*\
Class manualRenumber Declaration
Class manualRenumber Declaration
\*---------------------------------------------------------------------------*/
class manualRenumber
......@@ -71,6 +71,7 @@ public:
//- Construct given the renumber dictionary
manualRenumber(const dictionary& renumberDict);
//- Destructor
virtual ~manualRenumber()
{}
......@@ -110,7 +111,6 @@ public:
);
return labelList(0);
}
};
......
......@@ -41,7 +41,7 @@ namespace Foam
{
/*---------------------------------------------------------------------------*\
Class randomRenumber Declaration
Class randomRenumber Declaration
\*---------------------------------------------------------------------------*/
class randomRenumber
......@@ -66,6 +66,7 @@ public:
//- Construct given the renumber dictionary
randomRenumber(const dictionary& renumberDict);
//- Destructor
virtual ~randomRenumber()
{}
......
......@@ -52,7 +52,7 @@ namespace Foam
{
/*---------------------------------------------------------------------------*\
Class springRenumber Declaration
Class springRenumber Declaration
\*---------------------------------------------------------------------------*/
class springRenumber
......@@ -87,6 +87,7 @@ public:
//- Construct given the renumber dictionary
springRenumber(const dictionary& renumberDict);
//- Destructor
virtual ~springRenumber()
{}
......@@ -117,7 +118,6 @@ public:
const labelListList& cellCells,
const pointField& cc
);
};
......
......@@ -63,14 +63,16 @@ class cuttingPlane
public plane,
public MeshedSurface<face>
{
//- Private typedefs for convenience
typedef MeshedSurface<face> MeshStorage;
//- Private typedef for convenience
typedef MeshedSurface<face> MeshStorage;
// Private data
//- List of cells cut by the plane
labelList cutCells_;
// Private Member Functions
//- Determine cut cells, possibly restricted to a list of cells
......@@ -129,6 +131,7 @@ protected:
//- remap action on triangulation or cleanup
virtual void remapFaces(const labelUList& faceMap);
public:
// Constructors
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment