Salome HOME
Porting HEXABLOCKPLUGIN SALOME module on WIN32 platform.
[plugins/hexablockplugin.git] / src / HEXABLOCKPlugin / HEXABLOCKPlugin_HEXABLOCK.hxx
1 // Copyright (C) 2009-2013  CEA/DEN, EDF R&D
2 //
3 // This library is free software; you can redistribute it and/or
4 // modify it under the terms of the GNU Lesser General Public
5 // License as published by the Free Software Foundation; either
6 // version 2.1 of the License.
7 //
8 // This library is distributed in the hope that it will be useful,
9 // but WITHOUT ANY WARRANTY; without even the implied warranty of
10 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
11 // Lesser General Public License for more details.
12 //
13 // You should have received a copy of the GNU Lesser General Public
14 // License along with this library; if not, write to the Free Software
15 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
16 //
17 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
18 //
19
20 //=============================================================================
21 // File      : HEXABLOCKPlugin_HEXABLOCK.hxx
22 // Author    : Lioka RAZAFINDRAZAKA (CEA)
23 // Project   : SALOME
24 // $Header$
25 //=============================================================================
26 //
27 #ifndef _HEXABLOCKPlugin_HEXABLOCK_HXX_
28 #define _HEXABLOCKPlugin_HEXABLOCK_HXX_
29
30 #include "HEXABLOCKPlugin_Defs.hxx"
31 #include "SMESH_Algo.hxx"
32 #include "SMESH_Mesh.hxx"
33
34 class SMESH_Mesh;
35 class HEXABLOCKPlugin_Hypothesis;
36
37 class HEXABLOCKPLUGINENGINE_EXPORT HEXABLOCKPlugin_HEXABLOCK: public SMESH_3D_Algo
38 {
39 public:
40   HEXABLOCKPlugin_HEXABLOCK(int hypId, int studyId, SMESH_Gen* gen);
41   virtual ~HEXABLOCKPlugin_HEXABLOCK();
42
43   virtual bool CheckHypothesis(SMESH_Mesh&         aMesh,
44                                const TopoDS_Shape& aShape,
45                                Hypothesis_Status&  aStatus);
46
47   virtual bool Compute(SMESH_Mesh&         aMesh,
48                        const TopoDS_Shape& aShape);
49
50   virtual bool Evaluate(SMESH_Mesh& aMesh, const TopoDS_Shape& aShape,
51                         MapShapeNbElems& aResMap);
52
53   virtual bool Compute(SMESH_Mesh&         theMesh,
54                        SMESH_MesherHelper* aHelper);
55
56   bool Compute3D(SMESH_Mesh& aMesh);
57   bool Compute2D(SMESH_Mesh& aMesh);
58   bool Compute1D(SMESH_Mesh& aMesh);
59   bool Compute0D(SMESH_Mesh& aMesh);
60
61 private:
62   const HEXABLOCKPlugin_Hypothesis* _hyp;
63   int  _iShape;
64   int  _nbShape;
65 };
66
67 #endif