Salome HOME
Porting to OCCT development version: Standard_PI -> M_PI
[modules/geom.git] / src / GEOMAlgo / GEOMAlgo_DataMapOfOrientedShapeShape.hxx
1 // Copyright (C) 2007-2011  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 #ifndef _GEOMAlgo_DataMapOfOrientedShapeShape_HeaderFile
20 #define _GEOMAlgo_DataMapOfOrientedShapeShape_HeaderFile
21
22 #ifndef _TCollection_BasicMap_HeaderFile
23 #include <TCollection_BasicMap.hxx>
24 #endif
25 #ifndef _Handle_GEOMAlgo_DataMapNodeOfDataMapOfOrientedShapeShape_HeaderFile
26 #include <Handle_GEOMAlgo_DataMapNodeOfDataMapOfOrientedShapeShape.hxx>
27 #endif
28 #ifndef _Standard_Integer_HeaderFile
29 #include <Standard_Integer.hxx>
30 #endif
31 #ifndef _Standard_Boolean_HeaderFile
32 #include <Standard_Boolean.hxx>
33 #endif
34
35 class Standard_DomainError;
36 class Standard_NoSuchObject;
37 class TopoDS_Shape;
38 class TopTools_OrientedShapeMapHasher;
39 class GEOMAlgo_DataMapNodeOfDataMapOfOrientedShapeShape;
40 class GEOMAlgo_DataMapIteratorOfDataMapOfOrientedShapeShape;
41
42 #ifndef _Standard_HeaderFile
43 #include <Standard.hxx>
44 #endif
45 #ifndef _Standard_Macro_HeaderFile
46 #include <Standard_Macro.hxx>
47 #endif
48
49 #include <Basics_OCCTVersion.hxx>
50
51 class GEOMAlgo_DataMapOfOrientedShapeShape  : public TCollection_BasicMap
52 {
53 public:
54
55   void* operator new(size_t,void* anAddress) 
56   {
57     return anAddress;
58   }
59   void* operator new(size_t size) 
60   { 
61     return Standard::Allocate(size); 
62   }
63   void  operator delete(void *anAddress) 
64   { 
65     if (anAddress) Standard::Free((Standard_Address&)anAddress); 
66   }
67
68   // Methods PUBLIC
69   // 
70
71   Standard_EXPORT GEOMAlgo_DataMapOfOrientedShapeShape(const Standard_Integer NbBuckets = 1);
72
73   Standard_EXPORT   GEOMAlgo_DataMapOfOrientedShapeShape& Assign(const GEOMAlgo_DataMapOfOrientedShapeShape& Other) ;
74   GEOMAlgo_DataMapOfOrientedShapeShape& operator =(const GEOMAlgo_DataMapOfOrientedShapeShape& Other) 
75   {
76     return Assign(Other);
77   }
78
79   Standard_EXPORT   void ReSize(const Standard_Integer NbBuckets) ;
80
81   Standard_EXPORT   void Clear() ;
82   ~GEOMAlgo_DataMapOfOrientedShapeShape()
83   {
84     Clear();
85   }
86
87   Standard_EXPORT   Standard_Boolean Bind(const TopoDS_Shape& K,const TopoDS_Shape& I) ;
88   Standard_EXPORT   Standard_Boolean IsBound(const TopoDS_Shape& K) const;
89   Standard_EXPORT   Standard_Boolean UnBind(const TopoDS_Shape& K) ;
90
91   Standard_EXPORT  const TopoDS_Shape& Find(const TopoDS_Shape& K) const;
92   const TopoDS_Shape& operator()(const TopoDS_Shape& K) const
93   {
94     return Find(K);
95   }
96
97   Standard_EXPORT   TopoDS_Shape& ChangeFind(const TopoDS_Shape& K) ;
98   TopoDS_Shape& operator()(const TopoDS_Shape& K) 
99   {
100     return ChangeFind(K);
101   }
102
103 #if OCC_VERSION_LARGE > 0x06050100 // for OCC-6.5.2 and higher version
104   Standard_EXPORT Standard_Address Find1 (const TopoDS_Shape& K) const;
105   Standard_EXPORT Standard_Address ChangeFind1 (const TopoDS_Shape& K);
106 #endif
107
108 private: 
109
110  // Methods PRIVATE
111  // 
112 Standard_EXPORT GEOMAlgo_DataMapOfOrientedShapeShape(const GEOMAlgo_DataMapOfOrientedShapeShape& Other);
113
114 };
115
116 // other Inline functions and methods (like "C++: function call" methods)
117 //
118
119 #endif