0031668: Visualization - WebGL sample doesn't work on Emscripten 1.39
[occt.git] / src / BRepMesh / BRepMesh_ModelBuilder.hxx
1 // Created on: 2016-04-07
2 // Copyright (c) 2016 OPEN CASCADE SAS
3 // Created by: Oleg AGASHIN
4 //
5 // This file is part of Open CASCADE Technology software library.
6 //
7 // This library is free software; you can redistribute it and/or modify it under
8 // the terms of the GNU Lesser General Public License version 2.1 as published
9 // by the Free Software Foundation, with special exception defined in the file
10 // OCCT_LGPL_EXCEPTION.txt. Consult the file LICENSE_LGPL_21.txt included in OCCT
11 // distribution for complete text of the license and disclaimer of any warranty.
12 //
13 // Alternatively, this file may be used under the terms of Open CASCADE
14 // commercial license or contractual agreement.
15
16 #ifndef _BRepMesh_ModelBuilder_HeaderFile
17 #define _BRepMesh_ModelBuilder_HeaderFile
18
19 #include <IMeshTools_ModelBuilder.hxx>
20 #include <Standard_Type.hxx>
21 #include <TopoDS_Shape.hxx>
22
23 //! Class implements interface representing tool for discrete model building.
24 //! 
25 //! The following statuses should be used by default:
26 //! Message_Done1 - model has been sucessfully built.
27 //! Message_Fail1 - empty shape.
28 //! Message_Fail2 - model has not been build due to unexpected reason.
29 class BRepMesh_ModelBuilder : public IMeshTools_ModelBuilder
30 {
31 public:
32
33   //! Constructor.
34   Standard_EXPORT BRepMesh_ModelBuilder ();
35
36   //! Destructor.
37   Standard_EXPORT virtual ~BRepMesh_ModelBuilder ();
38
39   DEFINE_STANDARD_RTTI_INLINE(BRepMesh_ModelBuilder, IMeshTools_ModelBuilder)
40
41 protected:
42
43   //! Creates discrete model for the given shape.
44   //! Returns nullptr in case of failure.
45   Standard_EXPORT virtual Handle (IMeshData_Model) performInternal (
46     const TopoDS_Shape&          theShape,
47     const IMeshTools_Parameters& theParameters) Standard_OVERRIDE;
48 };
49
50 #endif