Salome HOME
Update copyright
[modules/geom.git] / src / NMTDS / NMTDS_PassKey.hxx
1 // Copyright (C) 2007-2011  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.
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 #ifndef _NMTDS_PassKey_HeaderFile
24 #define _NMTDS_PassKey_HeaderFile
25
26 #ifndef _Standard_Integer_HeaderFile
27 #include <Standard_Integer.hxx>
28 #endif
29 #ifndef _TColStd_IndexedMapOfInteger_HeaderFile
30 #include <TColStd_IndexedMapOfInteger.hxx>
31 #endif
32 #ifndef _Standard_Boolean_HeaderFile
33 #include <Standard_Boolean.hxx>
34 #endif
35 class TColStd_ListOfInteger;
36
37
38 #ifndef _Standard_HeaderFile
39 #include <Standard.hxx>
40 #endif
41 #ifndef _Standard_Macro_HeaderFile
42 #include <Standard_Macro.hxx>
43 #endif
44
45
46 class NMTDS_PassKey  {
47
48 public:
49
50     void* operator new(size_t,void* anAddress) 
51       {
52         return anAddress;
53       }
54     void* operator new(size_t size) 
55       { 
56         return Standard::Allocate(size); 
57       }
58     void  operator delete(void *anAddress) 
59       { 
60         if (anAddress) Standard::Free((Standard_Address&)anAddress); 
61       }
62  // Methods PUBLIC
63  // 
64
65
66 Standard_EXPORT NMTDS_PassKey();
67 Standard_EXPORT virtual ~NMTDS_PassKey();
68
69
70 Standard_EXPORT NMTDS_PassKey(const NMTDS_PassKey& Other);
71 Standard_EXPORT NMTDS_PassKey& operator =(const NMTDS_PassKey& Other);
72
73
74 Standard_EXPORT   void Clear() ;
75
76
77 Standard_EXPORT   void SetIds(const Standard_Integer aI1) ;
78
79
80 Standard_EXPORT   void SetIds(const Standard_Integer aI1,const Standard_Integer aI2) ;
81
82
83 Standard_EXPORT   void SetIds(const Standard_Integer aI1,const Standard_Integer aI2,const Standard_Integer aI3) ;
84
85
86 Standard_EXPORT   void SetIds(const Standard_Integer aI1,const Standard_Integer aI2,const Standard_Integer aI3,const Standard_Integer aI4) ;
87
88
89 Standard_EXPORT   void SetIds(const TColStd_ListOfInteger& aLS) ;
90
91
92 Standard_EXPORT   Standard_Integer NbIds() const;
93
94
95 Standard_EXPORT   Standard_Boolean IsEqual(const NMTDS_PassKey& aOther) const;
96
97
98 Standard_EXPORT   Standard_Integer HashCode(const Standard_Integer Upper) const;
99
100
101 Standard_EXPORT   Standard_Integer Id(const Standard_Integer aIndex) const;
102
103
104 Standard_EXPORT   void Ids(Standard_Integer& aI1,Standard_Integer& aI2) const;
105
106
107 Standard_EXPORT   void Dump(const Standard_Integer aHex = 0) const;
108
109
110
111
112
113 protected:
114
115  // Methods PROTECTED
116  // 
117
118
119  // Fields PROTECTED
120  //
121 Standard_Integer myNbIds;
122 Standard_Integer mySum;
123 TColStd_IndexedMapOfInteger myMap;
124
125
126 private: 
127
128  // Methods PRIVATE
129  // 
130
131
132  // Fields PRIVATE
133  //
134
135
136 };
137
138
139
140
141
142 // other Inline functions and methods (like "C++: function call" methods)
143 //
144
145
146 #endif