Salome HOME
Merge from V6_main_20120808 08Aug12
[modules/smesh.git] / src / StdMeshers / StdMeshers_UseExisting_1D2D.hxx
1 // Copyright (C) 2007-2012  CEA/DEN, EDF R&D, OPEN CASCADE
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 //  SMESH SMESH : implementaion of SMESH idl descriptions
21 //  File   : StdMeshers_UseExisting_1D2D.hxx
22 //  Module : SMESH
23 //
24 #ifndef _SMESH_UseExisting_1D2D_HXX_
25 #define _SMESH_UseExisting_1D2D_HXX_
26
27 #include "SMESH_StdMeshers.hxx"
28
29 #include "SMESH_1D_Algo.hxx"
30 #include "SMESH_2D_Algo.hxx"
31
32 /*!
33  * \brief 1D and 2D algorithms doing nothing to allow mesh generation
34  * by mesh edition functions in TUI mode
35  */
36 class STDMESHERS_EXPORT StdMeshers_UseExisting_2D: public SMESH_2D_Algo
37 {
38 public:
39   StdMeshers_UseExisting_2D(int hypId, int studyId, SMESH_Gen* gen);
40
41   virtual bool CheckHypothesis(SMESH_Mesh&                          aMesh,
42                                const TopoDS_Shape&                  aShape,
43                                SMESH_Hypothesis::Hypothesis_Status& aStatus);
44
45   virtual bool Compute(SMESH_Mesh& aMesh, const TopoDS_Shape& aShape);
46   
47   virtual bool Evaluate(SMESH_Mesh & aMesh, const TopoDS_Shape & aShape,
48                         MapShapeNbElems& aResMap);
49 };
50
51 class STDMESHERS_EXPORT StdMeshers_UseExisting_1D: public SMESH_1D_Algo
52 {
53 public:
54   StdMeshers_UseExisting_1D(int hypId, int studyId, SMESH_Gen* gen);
55
56   virtual bool CheckHypothesis(SMESH_Mesh&                          aMesh,
57                                const TopoDS_Shape&                  aShape,
58                                SMESH_Hypothesis::Hypothesis_Status& aStatus);
59
60   virtual bool Compute(SMESH_Mesh& aMesh, const TopoDS_Shape& aShape);
61   
62   virtual bool Evaluate(SMESH_Mesh & aMesh, const TopoDS_Shape & aShape,
63                         MapShapeNbElems& aResMap);
64 };
65
66 #endif