Salome HOME
ebe1933952111f8656b0e2cf79c0198f74f59613
[plugins/ghs3dplugin.git] / src / GHS3DPlugin_GHS3D.hxx
1 // Copyright (C) 2005  CEA/DEN, EDF R&D, OPEN CASCADE, PRINCIPIA 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 // File      : GHS3DPlugin_GHS3D.hxx
21 // Project   : SALOME
22 // Copyright : CEA 2003
23 // $Header$
24 //=============================================================================
25
26 #ifndef _GHS3DPlugin_GHS3D_HXX_
27 #define _GHS3DPlugin_GHS3D_HXX_
28
29 #include "SMESH_3D_Algo.hxx"
30
31 class SMESH_Mesh;
32
33 class GHS3DPlugin_GHS3D: public SMESH_3D_Algo
34 {
35 public:
36   GHS3DPlugin_GHS3D(int hypId, int studyId, SMESH_Gen* gen);
37   virtual ~GHS3DPlugin_GHS3D();
38
39   virtual bool CheckHypothesis(SMESH_Mesh&                          aMesh,
40                                const TopoDS_Shape&                  aShape,
41                                SMESH_Hypothesis::Hypothesis_Status& aStatus);
42
43   virtual bool Compute(SMESH_Mesh&         aMesh,
44                        const TopoDS_Shape& aShape);
45
46 };
47
48 #endif