Salome HOME
Join modifications from BR_Dev_For_4_0 tag V4_1_1.
[plugins/netgenplugin.git] / src / NETGENPlugin / NETGENPlugin_NETGEN_2D.hxx
1 //  NETGENPlugin : C++ implementation
2 //
3 //  Copyright (C) 2006  OPEN CASCADE, CEA/DEN, EDF R&D
4 // 
5 //  This library is free software; you can redistribute it and/or 
6 //  modify it under the terms of the GNU Lesser General Public 
7 //  License as published by the Free Software Foundation; either 
8 //  version 2.1 of the License. 
9 // 
10 //  This library is distributed in the hope that it will be useful, 
11 //  but WITHOUT ANY WARRANTY; without even the implied warranty of 
12 //  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU 
13 //  Lesser General Public License for more details. 
14 // 
15 //  You should have received a copy of the GNU Lesser General Public 
16 //  License along with this library; if not, write to the Free Software 
17 //  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA 
18 // 
19 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
20 //
21 //
22 // File      : NETGENPlugin_NETGEN_2D.hxx
23 // Author    : Michael Sazonov (OCN)
24 // Date      : 20/03/2006
25 // Project   : SALOME
26 // $Header$
27 //=============================================================================
28
29 #ifndef _NETGENPlugin_NETGEN_2D_HXX_
30 #define _NETGENPlugin_NETGEN_2D_HXX_
31
32 #include "NETGENPlugin_Defs.hxx"
33
34 #include "SMESH_2D_Algo.hxx"
35 #include "SMESH_Mesh.hxx"
36 #include "StdMeshers_MaxElementVolume.hxx"
37 #include "Utils_SALOME_Exception.hxx"
38
39 class NETGENPlugin_Hypothesis_2D;
40
41 class NETGENPLUGIN_EXPORT NETGENPlugin_NETGEN_2D: public SMESH_2D_Algo
42 {
43 public:
44   NETGENPlugin_NETGEN_2D(int hypId, int studyId, SMESH_Gen* gen);
45   virtual ~NETGENPlugin_NETGEN_2D();
46
47   virtual bool CheckHypothesis(SMESH_Mesh& aMesh,
48                                const TopoDS_Shape& aShape,
49                                SMESH_Hypothesis::Hypothesis_Status& aStatus);
50
51   virtual bool Compute(SMESH_Mesh& aMesh,
52                        const TopoDS_Shape& aShape);
53
54 protected:
55   const NETGENPlugin_Hypothesis_2D* _hypothesis;
56 };
57
58 #endif