Salome HOME
Remove Opencascade dependencies
[modules/smesh.git] / src / SMDS / SMDS_ExtendedMap.hxx
1 //  SMESH SMDS : implementaion of Salome mesh data structure
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   : SMDS_ExtendedMap.hxx
25 //  Module : SMESH
26
27 #ifndef _SMDS_ExtendedMap_HeaderFile
28 #define _SMDS_ExtendedMap_HeaderFile
29
30 #ifndef _TCollection_BasicMap_HeaderFile
31 #include <TCollection_BasicMap.hxx>
32 #endif
33 #ifndef _Handle_SMDS_MeshElement_HeaderFile
34 #include "Handle_SMDS_MeshElement.hxx"
35 #endif
36 #ifndef _Handle_SMDS_StdMapNodeOfExtendedMap_HeaderFile
37 #include "Handle_SMDS_StdMapNodeOfExtendedMap.hxx"
38 #endif
39 #ifndef _Standard_Integer_HeaderFile
40 #include <Standard_Integer.hxx>
41 #endif
42 #ifndef _Standard_Boolean_HeaderFile
43 #include <Standard_Boolean.hxx>
44 #endif
45 class Standard_DomainError;
46 class SMDS_MeshElement;
47 class SMDS_MeshElementMapHasher;
48 class SMDS_StdMapNodeOfExtendedMap;
49 class SMDS_MapIteratorOfExtendedMap;
50
51
52 #ifndef _Standard_HeaderFile
53 #include <Standard.hxx>
54 #endif
55 #ifndef _Standard_Macro_HeaderFile
56 #include <Standard_Macro.hxx>
57 #endif
58
59 class SMDS_ExtendedMap  : public TCollection_BasicMap {
60
61 public:
62
63     inline void* operator new(size_t,void* anAddress) 
64       {
65         return anAddress;
66       }
67     inline void* operator new(size_t size) 
68       { 
69         return Standard::Allocate(size); 
70       }
71     inline void  operator delete(void *anAddress) 
72       { 
73         if (anAddress) Standard::Free((Standard_Address&)anAddress); 
74       }
75 //    inline void  operator delete(void *anAddress, size_t size) 
76 //      { 
77 //        if (anAddress) Standard::Free((Standard_Address&)anAddress,size); 
78 //      }
79  // Methods PUBLIC
80  // 
81 Standard_EXPORT SMDS_ExtendedMap(const Standard_Integer NbBuckets = 1);
82 Standard_EXPORT   SMDS_ExtendedMap& Assign(const SMDS_ExtendedMap& Other) ;
83   SMDS_ExtendedMap& operator =(const SMDS_ExtendedMap& Other) 
84 {
85   return Assign(Other);
86 }
87
88 Standard_EXPORT   void ReSize(const Standard_Integer NbBuckets) ;
89 Standard_EXPORT   void Clear() ;
90 ~SMDS_ExtendedMap()
91 {
92   Clear();
93 }
94
95 Standard_EXPORT   Standard_Boolean Add(const Handle(SMDS_MeshElement)& aKey) ;
96 Standard_EXPORT   Standard_Boolean Contains(const Handle(SMDS_MeshElement)& aKey) const;
97 Standard_EXPORT   Standard_Boolean Remove(const Handle(SMDS_MeshElement)& aKey) ;
98
99
100
101
102
103 protected:
104
105  // Methods PROTECTED
106  // 
107
108
109  // Fields PROTECTED
110  //
111
112
113 private: 
114
115  // Methods PRIVATE
116  // 
117 Standard_EXPORT SMDS_ExtendedMap(const SMDS_ExtendedMap& Other);
118
119
120  // Fields PRIVATE
121  //
122
123
124 };
125
126
127
128
129
130 // other inline functions and methods (like "C++: function call" methods)
131 //
132
133
134 #endif