Salome HOME
Merge branch 'asl/hydro_porting_741'
[modules/gui.git] / src / OBJECT / SALOME_DataMapOfIOMapOfInteger.hxx
1 // Copyright (C) 2007-2014  CEA/DEN, EDF R&D, OPEN CASCADE
2 //
3 // Copyright (C) 2003-2007  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, or (at your option) any later version.
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.salome-platform.org/ or email : webmaster.salome@opencascade.com
21 //
22
23 //  SALOME SALOMEGUI : implementation of desktop and GUI kernel
24 //  File   : SALOME_DataMapOfIOMapOfInteger.hxx
25 //  Module : SALOME
26
27 #ifndef _SALOME_DataMapOfIOMapOfInteger_HeaderFile
28 #define _SALOME_DataMapOfIOMapOfInteger_HeaderFile
29
30 #ifndef _TCollection_BasicMap_HeaderFile
31 #include <TCollection_BasicMap.hxx>
32 #endif
33 #ifndef _Handle_SALOME_InteractiveObject_HeaderFile
34 #include "Handle_SALOME_InteractiveObject.hxx"
35 #endif
36 #ifndef _Handle_SALOME_DataMapNodeOfDataMapOfIOMapOfInteger_HeaderFile
37 #include "Handle_SALOME_DataMapNodeOfDataMapOfIOMapOfInteger.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
46 class Standard_DomainError;
47 class Standard_NoSuchObject;
48 class SALOME_InteractiveObject;
49 class TColStd_IndexedMapOfInteger;
50 class TColStd_MapTransientHasher;
51 class SALOME_DataMapNodeOfDataMapOfIOMapOfInteger;
52 class SALOME_DataMapIteratorOfDataMapOfIOMapOfInteger;
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 #include <Basics_OCCTVersion.hxx>
62
63 class SALOME_DataMapOfIOMapOfInteger  : public TCollection_BasicMap {
64
65 public:
66
67     inline void* operator new(size_t,void* anAddress) 
68       {
69         return anAddress;
70       }
71     inline void* operator new(size_t size) 
72       { 
73         return Standard::Allocate(size); 
74       }
75     inline void  operator delete(void *anAddress) 
76       { 
77         if (anAddress) Standard::Free((Standard_Address&)anAddress); 
78       }
79
80  // Methods PUBLIC
81  // 
82 Standard_EXPORT SALOME_DataMapOfIOMapOfInteger(const Standard_Integer NbBuckets = 1);
83 Standard_EXPORT   SALOME_DataMapOfIOMapOfInteger& Assign(const SALOME_DataMapOfIOMapOfInteger& Other) ;
84   SALOME_DataMapOfIOMapOfInteger& operator =(const SALOME_DataMapOfIOMapOfInteger& Other) 
85 {
86   return Assign(Other);
87 }
88
89 Standard_EXPORT   void ReSize(const Standard_Integer NbBuckets) ;
90 Standard_EXPORT   void Clear() ;
91 ~SALOME_DataMapOfIOMapOfInteger()
92 {
93   Clear();
94 }
95
96 Standard_EXPORT   Standard_Boolean Bind(const Handle(SALOME_InteractiveObject)& K,const TColStd_IndexedMapOfInteger& I) ;
97 Standard_EXPORT   Standard_Boolean IsBound(const Handle(SALOME_InteractiveObject)& K) const;
98 Standard_EXPORT   Standard_Boolean UnBind(const Handle(SALOME_InteractiveObject)& K) ;
99 Standard_EXPORT  const TColStd_IndexedMapOfInteger& Find(const Handle(SALOME_InteractiveObject)& K) const;
100  const TColStd_IndexedMapOfInteger& operator()(const Handle(SALOME_InteractiveObject)& K) const
101 {
102   return Find(K);
103 }
104
105 Standard_EXPORT   TColStd_IndexedMapOfInteger& ChangeFind(const Handle(SALOME_InteractiveObject)& K) ;
106   TColStd_IndexedMapOfInteger& operator()(const Handle(SALOME_InteractiveObject)& K) 
107 {
108   return ChangeFind(K);
109 }
110
111 Standard_EXPORT   Standard_Address Find1 (const Handle(SALOME_InteractiveObject)& K) const;
112 Standard_EXPORT   Standard_Address ChangeFind1 (const Handle(SALOME_InteractiveObject)& K);
113
114 private: 
115 Standard_EXPORT SALOME_DataMapOfIOMapOfInteger(const SALOME_DataMapOfIOMapOfInteger& Other);
116 };
117
118 // other inline functions and methods (like "C++: function call" methods)
119 //
120
121 #endif