Salome HOME
Merge from V6_main_20120808 08Aug12
[modules/geom.git] / src / NMTTools / NMTTools_CheckerSI.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 //  File:       NMTTools_CheckerSI.hxx
21 //  Created:    Mon Feb 19 11:32:08 2007
22 //  Author:     Peter KURNEV
23 //
24 #ifndef _NMTTools_CheckerSI_HeaderFile
25 #define _NMTTools_CheckerSI_HeaderFile
26
27 #include <Standard.hxx>
28 #include <Standard_Macro.hxx>
29 #include <Standard_Integer.hxx>
30 #include <NMTTools_PaveFiller.hxx>
31 #include <TopAbs_ShapeEnum.hxx>
32
33 //=======================================================================
34 //class    : NMTTools_CheckerSI
35 //purpose  :
36 //=======================================================================
37 class NMTTools_CheckerSI  : public NMTTools_PaveFiller
38 {
39  public:
40   Standard_EXPORT
41     NMTTools_CheckerSI();
42
43   Standard_EXPORT
44     virtual ~NMTTools_CheckerSI();
45
46   Standard_EXPORT
47     virtual  void Perform() ;
48
49   Standard_EXPORT
50     Standard_Integer StopStatus() const;
51
52  protected:
53   Standard_EXPORT
54     virtual  void Init() ;
55
56   Standard_EXPORT
57     virtual  void Clear() ;
58
59   Standard_EXPORT
60     virtual  void PreparePaveBlocks(const Standard_Integer nE) ;
61
62   Standard_EXPORT
63     virtual  void PreparePaveBlocks(const TopAbs_ShapeEnum aType1,
64                                     const TopAbs_ShapeEnum aType2) ;
65
66
67   Standard_Integer myStopStatus;
68 };
69 #endif