BUG: Corrected mapped point patch definition

This commit is contained in:
andy
2011-09-09 15:00:15 +01:00
parent f4f078b979
commit 93c5e81fe1

View File

@ -35,8 +35,9 @@ SourceFiles
#ifndef mappedPointPatch_H
#define mappedPointPatch_H
#include "wallPointPatch.H"
#include "mappedWallPolyPatch.H"
#include "facePointPatch.H"
#include "mappedPolyPatch.H"
#include "addToRunTimeSelectionTable.H"
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
@ -49,13 +50,13 @@ namespace Foam
class mappedPointPatch
:
public wallPointPatch
public facePointPatch
{
public:
//- Runtime type information
TypeName(mappedWallPolyPatch::typeName_());
TypeName(mappedPolyPatch::typeName_());
// Constructors
@ -67,7 +68,7 @@ public:
const pointBoundaryMesh& bm
)
:
wallPointPatch(patch, bm)
facePointPatch(patch, bm)
{}
};