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