From: eap Date: Thu, 27 Apr 2006 14:06:39 +0000 (+0000) Subject: move StdMeshers_Helper to SMESH_MesherHelper (for linear<->quadratic mesh conversion) X-Git-Url: http://git.salome-platform.org/gitweb/?a=commitdiff_plain;h=b0e14beffa9de8092ff042bf2420a4512cbaddcc;p=plugins%2Fnetgenplugin.git move StdMeshers_Helper to SMESH_MesherHelper (for linear<->quadratic mesh conversion) --- diff --git a/src/NETGENPlugin/NETGENPlugin_NETGEN_3D.cxx b/src/NETGENPlugin/NETGENPlugin_NETGEN_3D.cxx index e821ade..6ba92ae 100644 --- a/src/NETGENPlugin/NETGENPlugin_NETGEN_3D.cxx +++ b/src/NETGENPlugin/NETGENPlugin_NETGEN_3D.cxx @@ -17,7 +17,7 @@ using namespace std; #include "SMESHDS_Mesh.hxx" #include "SMDS_MeshElement.hxx" #include "SMDS_MeshNode.hxx" -#include "StdMeshers_Helper.hxx" +#include "SMESH_MesherHelper.hxx" #include #include @@ -141,7 +141,7 @@ bool NETGENPlugin_NETGEN_3D::Compute(SMESH_Mesh& aMesh, // get triangles on aShell and make a map of nodes to Netgen node IDs // ------------------------------------------------------------------- - StdMeshers_Helper* myTool = new StdMeshers_Helper(aMesh); + SMESH_MesherHelper* myTool = new SMESH_MesherHelper(aMesh); bool _quadraticMesh = myTool->IsQuadraticSubMesh(aShape); typedef map< const SMDS_MeshNode*, int> TNodeToIDMap;