STYLE: edgeMesh: indentation etc.

This commit is contained in:
mattijs
2013-12-11 14:47:58 +00:00
parent b713bc7124
commit 1c9fbf6997
4 changed files with 9 additions and 9 deletions

View File

@ -2,7 +2,7 @@
========= | ========= |
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox \\ / F ield | OpenFOAM: The Open Source CFD Toolbox
\\ / O peration | \\ / O peration |
\\ / A nd | Copyright (C) 2011-2012 OpenFOAM Foundation \\ / A nd | Copyright (C) 2011-2013 OpenFOAM Foundation
\\/ M anipulation | \\/ M anipulation |
------------------------------------------------------------------------------- -------------------------------------------------------------------------------
License License
@ -31,6 +31,7 @@ SourceFiles
edgeMeshI.H edgeMeshI.H
edgeMesh.C edgeMesh.C
edgeMeshIO.C edgeMeshIO.C
edgeMeshNew.C
\*---------------------------------------------------------------------------*/ \*---------------------------------------------------------------------------*/

View File

@ -2,7 +2,7 @@
========= | ========= |
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox \\ / F ield | OpenFOAM: The Open Source CFD Toolbox
\\ / O peration | \\ / O peration |
\\ / A nd | Copyright (C) 2011 OpenFOAM Foundation \\ / A nd | Copyright (C) 2011-2013 OpenFOAM Foundation
\\/ M anipulation | \\/ M anipulation |
------------------------------------------------------------------------------- -------------------------------------------------------------------------------
License License
@ -48,14 +48,11 @@ Foam::autoPtr<Foam::edgeMesh> Foam::edgeMesh::New
<< exit(FatalError); << exit(FatalError);
} }
return autoPtr< edgeMesh >(cstrIter()(name)); return autoPtr<edgeMesh>(cstrIter()(name));
} }
Foam::autoPtr<Foam::edgeMesh> Foam::edgeMesh::New Foam::autoPtr<Foam::edgeMesh> Foam::edgeMesh::New(const fileName& name)
(
const fileName& name
)
{ {
word ext = name.ext(); word ext = name.ext();
if (ext == "gz") if (ext == "gz")

View File

@ -161,7 +161,7 @@ private:
// points and edges, unsorted // points and edges, unsorted
vectorField normals_; vectorField normals_;
//- //- Type per normal: which side of normal to mesh
List<sideVolumeType> normalVolumeTypes_; List<sideVolumeType> normalVolumeTypes_;
//- Flat and open edges require the direction of the edge //- Flat and open edges require the direction of the edge

View File

@ -2,7 +2,7 @@
========= | ========= |
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox \\ / F ield | OpenFOAM: The Open Source CFD Toolbox
\\ / O peration | \\ / O peration |
\\ / A nd | Copyright (C) 2011 OpenFOAM Foundation \\ / A nd | Copyright (C) 2011-2013 OpenFOAM Foundation
\\/ M anipulation | \\/ M anipulation |
------------------------------------------------------------------------------- -------------------------------------------------------------------------------
License License
@ -78,6 +78,8 @@ public:
featureEdgeMesh(const IOobject&, const featureEdgeMesh&); featureEdgeMesh(const IOobject&, const featureEdgeMesh&);
// IO
//- ReadData function required for regIOobject read operation //- ReadData function required for regIOobject read operation
virtual bool readData(Istream&); virtual bool readData(Istream&);