Skip to content
Snippets Groups Projects
Commit a7bb3e01 authored by Mark OLESEN's avatar Mark OLESEN
Browse files

STYLE: indentation

parent 9461d950
No related merge requests found
...@@ -43,7 +43,6 @@ SourceFiles ...@@ -43,7 +43,6 @@ SourceFiles
#define foamVtkMeshMaps_H #define foamVtkMeshMaps_H
#include "DynamicList.H" #include "DynamicList.H"
#include "labelList.H"
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
...@@ -56,7 +55,7 @@ namespace Foam ...@@ -56,7 +55,7 @@ namespace Foam
class foamVtkMeshMaps class foamVtkMeshMaps
{ {
// Private data // Private Data
//- Original cell ids for all cells (regular and decomposed) //- Original cell ids for all cells (regular and decomposed)
DynamicList<label> cellMap_; DynamicList<label> cellMap_;
...@@ -68,21 +67,22 @@ class foamVtkMeshMaps ...@@ -68,21 +67,22 @@ class foamVtkMeshMaps
// Eg, cell-centre labels for additional points of decomposed cells // Eg, cell-centre labels for additional points of decomposed cells
DynamicList<label> additionalIds_; DynamicList<label> additionalIds_;
public: public:
// Constructors // Constructors
//- Construct null //- Construct null
inline foamVtkMeshMaps(const label size = 0); inline explicit foamVtkMeshMaps(const label size = 0);
//- Destructor //- Destructor
inline ~foamVtkMeshMaps(); ~foamVtkMeshMaps() = default;
// Member Functions // Member Functions
// Access // Access
//- Original cell ids for all cells (regular and decomposed). //- Original cell ids for all cells (regular and decomposed).
// A regular mesh comprising only primitive cell types, this will just // A regular mesh comprising only primitive cell types, this will just
...@@ -98,7 +98,7 @@ public: ...@@ -98,7 +98,7 @@ public:
inline const labelList& additionalIds() const; inline const labelList& additionalIds() const;
// Edit // Edit
//- Clear //- Clear
inline void clear(); inline void clear();
......
...@@ -35,12 +35,6 @@ inline Foam::foamVtkMeshMaps::foamVtkMeshMaps(const label size) ...@@ -35,12 +35,6 @@ inline Foam::foamVtkMeshMaps::foamVtkMeshMaps(const label size)
{} {}
// * * * * * * * * * * * * * * * * Destructor * * * * * * * * * * * * * * * //
inline Foam::foamVtkMeshMaps::~foamVtkMeshMaps()
{}
// * * * * * * * * * * * * * * * Member Functions * * * * * * * * * * * * * // // * * * * * * * * * * * * * * * Member Functions * * * * * * * * * * * * * //
inline void Foam::foamVtkMeshMaps::clear() inline void Foam::foamVtkMeshMaps::clear()
......
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