Salome HOME
Merge from V6_main 01/04/2013
[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 "SMESH_Algo.hxx"
31 #include "SMESH_Mesh.hxx"
32
33 class SMESH_Mesh;
34 class HEXABLOCKPlugin_Hypothesis;
35
36 class HEXABLOCKPlugin_HEXABLOCK: public SMESH_3D_Algo
37 {
38 public:
39   HEXABLOCKPlugin_HEXABLOCK(int hypId, int studyId, SMESH_Gen* gen);
40   virtual ~HEXABLOCKPlugin_HEXABLOCK();
41
42   virtual bool CheckHypothesis(SMESH_Mesh&         aMesh,
43                                const TopoDS_Shape& aShape,
44                                Hypothesis_Status&  aStatus);
45
46   virtual bool Compute(SMESH_Mesh&         aMesh,
47                        const TopoDS_Shape& aShape);
48
49   virtual bool Evaluate(SMESH_Mesh& aMesh, const TopoDS_Shape& aShape,
50                         MapShapeNbElems& aResMap);
51
52   virtual bool Compute(SMESH_Mesh&         theMesh,
53                        SMESH_MesherHelper* aHelper);
54
55   bool Compute3D(SMESH_Mesh& aMesh);
56   bool Compute2D(SMESH_Mesh& aMesh);
57   bool Compute1D(SMESH_Mesh& aMesh);
58   bool Compute0D(SMESH_Mesh& aMesh);
59
60 private:
61   const HEXABLOCKPlugin_Hypothesis* _hyp;
62   int  _iShape;
63   int  _nbShape;
64 };
65
66 #endif