1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-09-18 14:27:39 +03:00

#314 Integration of the Message_ProgressIndicator in the BRep_Mesh and Express_Mesh

Patch for binary compatibility with old version BRep_Mesh
This commit is contained in:
gka
2020-09-21 14:30:22 +03:00
parent 9b5d64ea4c
commit 8ca3b04790
3 changed files with 3 additions and 5 deletions

View File

@@ -50,9 +50,7 @@ public:
Standard_EXPORT virtual void Perform () =0;
//! Compute triangulation for set shape.
Standard_EXPORT virtual void Perform (const Handle(Message_ProgressIndicator) &theProgress ) = 0;
DEFINE_STANDARD_RTTIEXT(BRepMesh_DiscretRoot,Standard_Transient)

View File

@@ -108,7 +108,7 @@ BRepMesh_IncrementalMesh::BRepMesh_IncrementalMesh( const TopoDS_Shape& theSh
//purpose :
//=======================================================================
BRepMesh_IncrementalMesh::BRepMesh_IncrementalMesh (const TopoDS_Shape& theShape,
const BRepMesh_FastDiscret::Parameters& theParameters) :
const BRepMesh_FastDiscret::Parameters& theParameters) :
myParameters(theParameters)
{
myShape = theShape;

View File

@@ -80,7 +80,7 @@ public: //! @name mesher API
Standard_EXPORT virtual void Perform() Standard_OVERRIDE;
//! Performs meshing ot the shape.
Standard_EXPORT virtual void Perform(const Handle(Message_ProgressIndicator) &theProgress) Standard_OVERRIDE;
Standard_EXPORT void Perform(const Handle(Message_ProgressIndicator) &theProgress);
public: //! @name accessing to parameters.