]> SALOME platform Git repositories - plugins/netgenplugin.git/commitdiff
Salome HOME
move StdMeshers_Helper to SMESH_MesherHelper (for linear<->quadratic mesh conversion)
authoreap <eap@opencascade.com>
Thu, 27 Apr 2006 14:06:39 +0000 (14:06 +0000)
committereap <eap@opencascade.com>
Thu, 27 Apr 2006 14:06:39 +0000 (14:06 +0000)
src/NETGENPlugin/NETGENPlugin_NETGEN_3D.cxx

index e821ade4c3708899833e8f50f4a11f5c08bbf113..6ba92ae00f0e58fc2dfdc9af4c90ade1cb9467cd 100644 (file)
@@ -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 <BRep_Tool.hxx>
 #include <TopExp.hxx>
@@ -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;