Salome HOME
Join modifications from BR_Dev_For_4_0 tag V4_1_1.
[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 // Author    : Edward AGAPOV, modified by Lioka RAZAFINDRAZAKA (CEA) 09/02/2007
22 // Project   : SALOME
23 // Copyright : CEA 2003
24 // $Header$
25 //=============================================================================
26
27 #ifndef _GHS3DPlugin_GHS3D_HXX_
28 #define _GHS3DPlugin_GHS3D_HXX_
29
30 #include "SMESH_3D_Algo.hxx"
31
32 class SMESH_Mesh;
33
34 class GHS3DPlugin_GHS3D: public SMESH_3D_Algo
35 {
36 public:
37   GHS3DPlugin_GHS3D(int hypId, int studyId, SMESH_Gen* gen);
38   virtual ~GHS3DPlugin_GHS3D();
39
40   virtual bool CheckHypothesis(SMESH_Mesh&                          aMesh,
41                                const TopoDS_Shape&                  aShape,
42                                SMESH_Hypothesis::Hypothesis_Status& aStatus);
43
44   virtual bool Compute(SMESH_Mesh&         aMesh,
45                const TopoDS_Shape& aShape);
46
47   virtual bool Compute(SMESH_Mesh&         theMesh,
48                        SMESH_MesherHelper* aHelper);
49
50   ostream & SaveTo(ostream & save);
51   istream & LoadFrom(istream & load);
52   friend ostream & operator << (ostream & save, GHS3DPlugin_GHS3D & hyp);
53   friend istream & operator >> (istream & load, GHS3DPlugin_GHS3D & hyp);
54
55 private:
56   int _iShape;
57   int _nbShape;
58 };
59
60 #endif