Salome HOME
598fc10d11160034231bdf72a9222c445174bd22
[modules/geom.git] / src / GEOMAlgo / GEOMAlgo_PassKeyShape.hxx
1
2 // Copyright (C) 2007-2021  CEA/DEN, EDF R&D, OPEN CASCADE
3 //
4 // Copyright (C) 2003-2007  OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
5 // CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
6 //
7 // This library is free software; you can redistribute it and/or
8 // modify it under the terms of the GNU Lesser General Public
9 // License as published by the Free Software Foundation; either
10 // version 2.1 of the License, or (at your option) any later version.
11 //
12 // This library is distributed in the hope that it will be useful,
13 // but WITHOUT ANY WARRANTY; without even the implied warranty of
14 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
15 // Lesser General Public License for more details.
16 //
17 // You should have received a copy of the GNU Lesser General Public
18 // License along with this library; if not, write to the Free Software
19 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
20 //
21 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
22 //
23
24 // File:        GEOMAlgo_PassKeyShape.hxx
25 // Created:
26 // Author:      Peter KURNEV
27 //              <pkv@irinox>
28 //
29 #ifndef _GEOMAlgo_PassKeyShape_HeaderFile
30 #define _GEOMAlgo_PassKeyShape_HeaderFile
31
32 #include <Standard.hxx>
33 #include <Standard_Macro.hxx>
34 #include <Standard_Integer.hxx>
35 #include <TopTools_IndexedMapOfShape.hxx>
36 #include <Standard_Boolean.hxx>
37 #include <TopoDS_Shape.hxx>
38 #include <TopTools_ListOfShape.hxx>
39
40
41 //=======================================================================
42 //class    : GEOMAlgo_PassKeyShape
43 //purpose  :
44 //=======================================================================
45 class GEOMAlgo_PassKeyShape  {
46  public:
47   Standard_EXPORT
48     GEOMAlgo_PassKeyShape();
49
50   Standard_EXPORT
51     virtual ~GEOMAlgo_PassKeyShape();
52
53   Standard_EXPORT
54     GEOMAlgo_PassKeyShape(const GEOMAlgo_PassKeyShape& Other);
55
56   Standard_EXPORT
57     GEOMAlgo_PassKeyShape& Assign(const GEOMAlgo_PassKeyShape& Other) ;
58
59   GEOMAlgo_PassKeyShape& operator =(const GEOMAlgo_PassKeyShape& Other) {
60     return Assign(Other);
61   }
62
63   Standard_EXPORT
64     void SetShapes(const TopoDS_Shape& aS) ;
65
66   Standard_EXPORT
67     void SetShapes(const TopoDS_Shape& aS1,
68                    const TopoDS_Shape& aS2) ;
69
70   Standard_EXPORT
71     void SetShapes(const TopoDS_Shape& aS1,
72                    const TopoDS_Shape& aS2,
73                    const TopoDS_Shape& aS3) ;
74
75   Standard_EXPORT
76     void SetShapes(const TopoDS_Shape& aS1,
77                    const TopoDS_Shape& aS2,
78                    const TopoDS_Shape& aS3,
79                    const TopoDS_Shape& aS4) ;
80
81   Standard_EXPORT
82     void SetShapes(const TopTools_ListOfShape& aLS) ;
83
84   Standard_EXPORT
85     void Clear() ;
86
87   Standard_EXPORT
88     Standard_Integer NbIds() const;
89
90   Standard_EXPORT
91     Standard_Boolean IsEqual(const GEOMAlgo_PassKeyShape& aOther) const;
92
93   Standard_EXPORT
94     Standard_Integer HashCode(const Standard_Integer Upper) const;
95
96   Standard_EXPORT
97     void Dump(const Standard_Integer aHex = 0) const;
98
99 protected:
100   Standard_Integer myNbIds;
101   Standard_Integer mySum;
102   Standard_Integer myUpper;
103   TopTools_IndexedMapOfShape myMap;
104 };
105 #endif