031053aa38de5b6957e8b7ff669d7b87e3548257
[occt.git] / src / BRepMesh / BRepMesh_ModelPreProcessor.hxx
1 // Created on: 2016-07-04
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_ModelPreProcessor_HeaderFile
17 #define _BRepMesh_ModelPreProcessor_HeaderFile
18
19 #include <IMeshTools_ModelAlgo.hxx>
20 #include <IMeshTools_Parameters.hxx>
21 #include <IMeshData_Types.hxx>
22
23 //! Class implements functionality of model pre-processing tool.
24 //! Nullifies existing polygonal data in case if model elements
25 //! have IMeshData_Outdated status.
26 class BRepMesh_ModelPreProcessor : public IMeshTools_ModelAlgo
27 {
28 public:
29
30   //! Constructor.
31   Standard_EXPORT BRepMesh_ModelPreProcessor();
32
33   //! Destructor.
34   Standard_EXPORT virtual ~BRepMesh_ModelPreProcessor();
35
36   DEFINE_STANDARD_RTTI_INLINE(BRepMesh_ModelPreProcessor, IMeshTools_ModelAlgo)
37
38 protected:
39
40   //! Performs processing of edges of the given model.
41   Standard_EXPORT virtual Standard_Boolean performInternal (
42     const Handle(IMeshData_Model)& theModel,
43     const IMeshTools_Parameters&   theParameters) Standard_OVERRIDE;
44 };
45
46 #endif