Salome HOME
Fix bug in structural elements (PAL #2012)
[modules/geom.git] / src / NMTDS / NMTDS_DataMapOfIntegerMapOfInteger.hxx
1 // Copyright (C) 2007-2011  CEA/DEN, EDF R&D, OPEN CASCADE
2 //
3 // This library is free software; you can redistribute it and/or
4 // modify it under the terms of the GNU Lesser General Public
5 // License as published by the Free Software Foundation; either
6 // version 2.1 of the License.
7 //
8 // This library is distributed in the hope that it will be useful,
9 // but WITHOUT ANY WARRANTY; without even the implied warranty of
10 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
11 // Lesser General Public License for more details.
12 //
13 // You should have received a copy of the GNU Lesser General Public
14 // License along with this library; if not, write to the Free Software
15 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
16 //
17 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
18
19 #ifndef _NMTDS_DataMapOfIntegerMapOfInteger_HeaderFile
20 #define _NMTDS_DataMapOfIntegerMapOfInteger_HeaderFile
21
22 #ifndef _TCollection_BasicMap_HeaderFile
23 #include <TCollection_BasicMap.hxx>
24 #endif
25 #ifndef _Standard_Integer_HeaderFile
26 #include <Standard_Integer.hxx>
27 #endif
28 #ifndef _Handle_NMTDS_DataMapNodeOfDataMapOfIntegerMapOfInteger_HeaderFile
29 #include <Handle_NMTDS_DataMapNodeOfDataMapOfIntegerMapOfInteger.hxx>
30 #endif
31 #ifndef _Standard_Boolean_HeaderFile
32 #include <Standard_Boolean.hxx>
33 #endif
34
35 class Standard_DomainError;
36 class Standard_NoSuchObject;
37 class TColStd_MapOfInteger;
38 class TColStd_MapIntegerHasher;
39 class NMTDS_DataMapNodeOfDataMapOfIntegerMapOfInteger;
40 class NMTDS_DataMapIteratorOfDataMapOfIntegerMapOfInteger;
41
42 #ifndef _Standard_HeaderFile
43 #include <Standard.hxx>
44 #endif
45 #ifndef _Standard_Macro_HeaderFile
46 #include <Standard_Macro.hxx>
47 #endif
48
49 #include <Basics_OCCTVersion.hxx>
50
51 class NMTDS_DataMapOfIntegerMapOfInteger : public TCollection_BasicMap
52 {
53 public:
54
55   void* operator new(size_t,void* anAddress)
56   { return anAddress; }
57   void* operator new(size_t size)
58   { return Standard::Allocate(size); }
59   void  operator delete(void *anAddress)
60   { if (anAddress) Standard::Free((Standard_Address&)anAddress); }
61
62   // Methods PUBLIC
63   //
64
65   Standard_EXPORT NMTDS_DataMapOfIntegerMapOfInteger(const Standard_Integer NbBuckets = 1);
66
67   Standard_EXPORT NMTDS_DataMapOfIntegerMapOfInteger& Assign(const NMTDS_DataMapOfIntegerMapOfInteger& Other);
68   NMTDS_DataMapOfIntegerMapOfInteger& operator =(const NMTDS_DataMapOfIntegerMapOfInteger& Other)
69   {
70     return Assign(Other);
71   }
72
73   Standard_EXPORT void ReSize(const Standard_Integer NbBuckets);
74
75   Standard_EXPORT void Clear();
76   ~NMTDS_DataMapOfIntegerMapOfInteger()
77   {
78     Clear();
79   }
80
81   Standard_EXPORT Standard_Boolean Bind (const Standard_Integer& K,const TColStd_MapOfInteger& I);
82   Standard_EXPORT Standard_Boolean IsBound (const Standard_Integer& K) const;
83   Standard_EXPORT Standard_Boolean UnBind (const Standard_Integer& K);
84
85   Standard_EXPORT const TColStd_MapOfInteger& Find (const Standard_Integer& K) const;
86   const TColStd_MapOfInteger& operator()(const Standard_Integer& K) const
87   {
88     return Find(K);
89   }
90
91   Standard_EXPORT TColStd_MapOfInteger& ChangeFind(const Standard_Integer& K);
92   TColStd_MapOfInteger& operator()(const Standard_Integer& K)
93   {
94     return ChangeFind(K);
95   }
96
97 #if OCC_VERSION_LARGE > 0x06050100 // for OCC-6.5.2 and higher version
98   Standard_EXPORT Standard_Address Find1 (const Standard_Integer& K) const;
99   Standard_EXPORT Standard_Address ChangeFind1 (const Standard_Integer& K);
100 #endif
101
102 private:
103
104  // Methods PRIVATE
105  //
106
107   Standard_EXPORT NMTDS_DataMapOfIntegerMapOfInteger(const NMTDS_DataMapOfIntegerMapOfInteger& Other);
108
109 };
110
111 // other Inline functions and methods (like "C++: function call" methods)
112 //
113
114 #endif