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