Salome HOME
Fix for the bug IPAL22851: Sub-shapes spelling
[modules/geom.git] / src / GEOMAlgo / GEOMAlgo_GluerAlgo.hxx
1 // Copyright (C) 2007-2011  CEA/DEN, EDF R&D, OPEN CASCADE
2 //
3 // Copyright (C) 2003-2007  OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
4 // CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
5 //
6 // This library is free software; you can redistribute it and/or
7 // modify it under the terms of the GNU Lesser General Public
8 // License as published by the Free Software Foundation; either
9 // version 2.1 of the License.
10 //
11 // This library is distributed in the hope that it will be useful,
12 // but WITHOUT ANY WARRANTY; without even the implied warranty of
13 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14 // Lesser General Public License for more details.
15 //
16 // You should have received a copy of the GNU Lesser General Public
17 // License along with this library; if not, write to the Free Software
18 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
19 //
20 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
21 //
22 // File:        GEOMAlgo_GluerAlgo.hxx
23 // Created:     
24 // Author:      Peter KURNEV
25 //              <pkv@irinox>
26 //
27 #ifndef _GEOMAlgo_GluerAlgo_HeaderFile
28 #define _GEOMAlgo_GluerAlgo_HeaderFile
29
30 #include <Standard_Macro.hxx>
31 #include <TopoDS_Shape.hxx>
32 #include <Standard_Real.hxx>
33 #include <Standard_Boolean.hxx>
34 #include <IntTools_Context.hxx>
35 #include <TopTools_DataMapOfShapeListOfShape.hxx>
36 #include <TopTools_DataMapOfShapeShape.hxx>
37 #include <GEOMAlgo_BuilderShape.hxx>
38
39 //=======================================================================
40 //class    : GEOMAlgo_GluerAlgo
41 //purpose  : 
42 //=======================================================================
43 class GEOMAlgo_GluerAlgo {
44 public:
45
46   Standard_EXPORT 
47     GEOMAlgo_GluerAlgo();
48
49   Standard_EXPORT 
50     virtual ~GEOMAlgo_GluerAlgo();
51
52   Standard_EXPORT 
53     virtual void SetArgument(const TopoDS_Shape& theShape) ;
54
55   Standard_EXPORT 
56     const TopoDS_Shape& Argument() const;
57   
58   Standard_EXPORT 
59     void SetTolerance(const Standard_Real aT) ;
60   
61   Standard_EXPORT 
62     Standard_Real Tolerance() const;
63   
64   Standard_EXPORT 
65     void SetCheckGeometry(const Standard_Boolean aFlag) ;
66   
67   Standard_EXPORT 
68     Standard_Boolean CheckGeometry() const;
69   
70   Standard_EXPORT 
71     virtual  void Perform() ;
72   
73   Standard_EXPORT 
74     virtual  void Clear() ;
75   
76   Standard_EXPORT 
77     IntTools_Context& Context() ;
78   
79   Standard_EXPORT 
80     const TopTools_DataMapOfShapeListOfShape& Images() const;
81   
82   Standard_EXPORT 
83     const TopTools_DataMapOfShapeShape& Origins() const;
84
85 protected:
86   TopoDS_Shape myArgument;
87   Standard_Real myTolerance;
88   Standard_Boolean myCheckGeometry;
89   IntTools_Context myContext;
90   TopTools_DataMapOfShapeListOfShape myImages;
91   TopTools_DataMapOfShapeShape myOrigins;
92   
93 private:
94 };
95 #endif