]> SALOME platform Git repositories - modules/geom.git/blob - src/GEOMDS/GEOMDS_DataMapOfIntegerTransient.hxx
Salome HOME
NRI : Merge from V1_2.
[modules/geom.git] / src / GEOMDS / GEOMDS_DataMapOfIntegerTransient.hxx
1 //  GEOM GEOMDS : implementation of Geometry component data structure and Geometry documents management
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   : GEOMDS_DataMapOfIntegerTransient.hxx
25 //  Module : GEOM
26
27 #ifndef _GEOMDS_DataMapOfIntegerTransient_HeaderFile
28 #define _GEOMDS_DataMapOfIntegerTransient_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_Standard_Transient_HeaderFile
37 #include <Handle_Standard_Transient.hxx>
38 #endif
39 #ifndef _Handle_GEOMDS_DataMapNodeOfDataMapOfIntegerTransient_HeaderFile
40 #include "Handle_GEOMDS_DataMapNodeOfDataMapOfIntegerTransient.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 Standard_Transient;
48 class TColStd_MapIntegerHasher;
49 class GEOMDS_DataMapNodeOfDataMapOfIntegerTransient;
50 class GEOMDS_DataMapIteratorOfDataMapOfIntegerTransient;
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 GEOMDS_DataMapOfIntegerTransient  : 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 GEOMDS_DataMapOfIntegerTransient(const Standard_Integer NbBuckets = 1);
83 Standard_EXPORT GEOMDS_DataMapOfIntegerTransient& Assign(const GEOMDS_DataMapOfIntegerTransient& Other) ;
84 GEOMDS_DataMapOfIntegerTransient& operator =(const GEOMDS_DataMapOfIntegerTransient& Other) 
85 {
86   return Assign(Other);
87 }
88
89 Standard_EXPORT   void ReSize(const Standard_Integer NbBuckets) ;
90 Standard_EXPORT   void Clear() ;
91 ~GEOMDS_DataMapOfIntegerTransient()
92 {
93   Clear();
94 }
95
96 Standard_EXPORT   Standard_Boolean Bind(const Standard_Integer& K,const Handle(Standard_Transient)& 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_Standard_Transient& Find(const Standard_Integer& K) const;
100  const Handle_Standard_Transient& operator()(const Standard_Integer& K) const
101 {
102   return Find(K);
103 }
104
105 Standard_EXPORT   Handle_Standard_Transient& ChangeFind(const Standard_Integer& K) ;
106   Handle_Standard_Transient& operator()(const Standard_Integer& K) 
107 {
108   return ChangeFind(K);
109 }
110
111
112 protected:
113   
114   // Methods PROTECTED
115   // 
116   
117   
118   // Fields PROTECTED
119   //
120   
121   
122 private: 
123   
124   // Methods PRIVATE
125   // 
126   Standard_EXPORT GEOMDS_DataMapOfIntegerTransient(const GEOMDS_DataMapOfIntegerTransient& Other);
127
128
129 // Fields PRIVATE
130 //
131
132
133 };
134
135
136 // other inline functions and methods (like "C++: function call" methods)
137 //
138
139
140 #endif