Salome HOME
Remove no longer needed files
[modules/smesh.git] / src / SMESHDS / SMESHDS_DataMapOfShapeListOfPtrHypothesis.hxx
1 //  SMESH SMESHDS : management of mesh data and SMESH document
2 //
3 //  Copyright (C) 2003  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.opencascade.org/SALOME/ or email : webmaster.salome@opencascade.org 
21 //
22 //
23 //
24 //  File   : SMESHDS_DataMapOfShapeListOfPtrHypothesis.hxx
25 //  Module : SMESH
26
27 #ifndef _SMESHDS_DataMapOfShapeListOfPtrHypothesis_HeaderFile
28 #define _SMESHDS_DataMapOfShapeListOfPtrHypothesis_HeaderFile
29
30 #ifndef _TCollection_BasicMap_HeaderFile
31 #include <TCollection_BasicMap.hxx>
32 #endif
33 #ifndef _Handle_SMESHDS_DataMapNodeOfDataMapOfShapeListOfPtrHypothesis_HeaderFile
34 #include "Handle_SMESHDS_DataMapNodeOfDataMapOfShapeListOfPtrHypothesis.hxx"
35 #endif
36 #ifndef _Standard_Integer_HeaderFile
37 #include <Standard_Integer.hxx>
38 #endif
39 #ifndef _Standard_Boolean_HeaderFile
40 #include <Standard_Boolean.hxx>
41 #endif
42 class Standard_DomainError;
43 class Standard_NoSuchObject;
44 class TopoDS_Shape;
45 class SMESHDS_ListOfPtrHypothesis;
46 class TopTools_ShapeMapHasher;
47 class SMESHDS_DataMapNodeOfDataMapOfShapeListOfPtrHypothesis;
48 class SMESHDS_DataMapIteratorOfDataMapOfShapeListOfPtrHypothesis;
49
50
51 #ifndef _Standard_HeaderFile
52 #include <Standard.hxx>
53 #endif
54 #ifndef _Standard_Macro_HeaderFile
55 #include <Standard_Macro.hxx>
56 #endif
57
58 class SMESHDS_DataMapOfShapeListOfPtrHypothesis  : public TCollection_BasicMap {
59
60 public:
61
62     inline void* operator new(size_t,void* anAddress) 
63       {
64         return anAddress;
65       }
66     inline void* operator new(size_t size) 
67       { 
68         return Standard::Allocate(size); 
69       }
70     inline void  operator delete(void *anAddress) 
71       { 
72         if (anAddress) Standard::Free((Standard_Address&)anAddress); 
73       }
74 //    inline void  operator delete(void *anAddress, size_t size) 
75 //      { 
76 //        if (anAddress) Standard::Free((Standard_Address&)anAddress,size); 
77 //      }
78  // Methods PUBLIC
79  // 
80 Standard_EXPORT SMESHDS_DataMapOfShapeListOfPtrHypothesis(const Standard_Integer NbBuckets = 1);
81 Standard_EXPORT   SMESHDS_DataMapOfShapeListOfPtrHypothesis& Assign(const SMESHDS_DataMapOfShapeListOfPtrHypothesis& Other) ;
82   SMESHDS_DataMapOfShapeListOfPtrHypothesis& operator =(const SMESHDS_DataMapOfShapeListOfPtrHypothesis& Other) 
83 {
84   return Assign(Other);
85 }
86
87 Standard_EXPORT   void ReSize(const Standard_Integer NbBuckets) ;
88 Standard_EXPORT   void Clear() ;
89 ~SMESHDS_DataMapOfShapeListOfPtrHypothesis()
90 {
91   Clear();
92 }
93
94 Standard_EXPORT   Standard_Boolean Bind(const TopoDS_Shape& K,const SMESHDS_ListOfPtrHypothesis& I) ;
95 Standard_EXPORT   Standard_Boolean IsBound(const TopoDS_Shape& K) const;
96 Standard_EXPORT   Standard_Boolean UnBind(const TopoDS_Shape& K) ;
97 Standard_EXPORT  const SMESHDS_ListOfPtrHypothesis& Find(const TopoDS_Shape& K) const;
98  const SMESHDS_ListOfPtrHypothesis& operator()(const TopoDS_Shape& K) const
99 {
100   return Find(K);
101 }
102
103 Standard_EXPORT   SMESHDS_ListOfPtrHypothesis& ChangeFind(const TopoDS_Shape& K) ;
104   SMESHDS_ListOfPtrHypothesis& operator()(const TopoDS_Shape& K) 
105 {
106   return ChangeFind(K);
107 }
108
109
110
111
112
113
114 protected:
115
116  // Methods PROTECTED
117  // 
118
119
120  // Fields PROTECTED
121  //
122
123
124 private: 
125
126  // Methods PRIVATE
127  // 
128 Standard_EXPORT SMESHDS_DataMapOfShapeListOfPtrHypothesis(const SMESHDS_DataMapOfShapeListOfPtrHypothesis& Other);
129
130
131  // Fields PRIVATE
132  //
133
134
135 };
136
137
138
139
140
141 // other inline functions and methods (like "C++: function call" methods)
142 //
143
144
145 #endif