1 // Copyright (C) 2005 OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
2 // CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
4 // This library is free software; you can redistribute it and/or
5 // modify it under the terms of the GNU Lesser General Public
6 // License as published by the Free Software Foundation; either
7 // version 2.1 of the License.
9 // This library is distributed in the hope that it will be useful
10 // but WITHOUT ANY WARRANTY; without even the implied warranty of
11 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 // Lesser General Public License for more details.
14 // You should have received a copy of the GNU Lesser General Public
15 // License along with this library; if not, write to the Free Software
16 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
18 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
20 #ifndef _NMTTools_CommonBlockPool_HeaderFile
21 #define _NMTTools_CommonBlockPool_HeaderFile
23 #ifndef _Standard_Address_HeaderFile
24 #include <Standard_Address.hxx>
26 #ifndef _Standard_Integer_HeaderFile
27 #include <Standard_Integer.hxx>
29 #ifndef _Standard_Boolean_HeaderFile
30 #include <Standard_Boolean.hxx>
32 class Standard_OutOfRange;
33 class Standard_OutOfMemory;
34 class NMTTools_ListOfCommonBlock;
37 #ifndef _Standard_HeaderFile
38 #include <Standard.hxx>
40 #ifndef _Standard_Macro_HeaderFile
41 #include <Standard_Macro.hxx>
45 class NMTTools_CommonBlockPool {
49 void* operator new(size_t,void* anAddress)
53 void* operator new(size_t size)
55 return Standard::Allocate(size);
57 void operator delete(void *anAddress)
59 if (anAddress) Standard::Free((Standard_Address&)anAddress);
65 Standard_EXPORT NMTTools_CommonBlockPool(const Standard_Integer Length = 0,const Standard_Integer BlockLength = 5);
68 Standard_EXPORT void Resize(const Standard_Integer theNewLength) ;
71 Standard_EXPORT void Destroy() ;
72 ~NMTTools_CommonBlockPool()
79 Standard_EXPORT Standard_Integer Length() const;
82 Standard_EXPORT Standard_Integer Extent() const;
85 Standard_EXPORT Standard_Integer FactLength() const;
88 Standard_EXPORT Standard_Integer Append(const NMTTools_ListOfCommonBlock& Value) ;
91 Standard_EXPORT void Remove(const Standard_Integer Index) ;
94 Standard_EXPORT const NMTTools_ListOfCommonBlock& Value(const Standard_Integer Index) const;
95 const NMTTools_ListOfCommonBlock& operator ()(const Standard_Integer Index) const
102 Standard_EXPORT NMTTools_ListOfCommonBlock& ChangeValue(const Standard_Integer Index) ;
103 NMTTools_ListOfCommonBlock& operator ()(const Standard_Integer Index)
105 return ChangeValue(Index);
110 Standard_EXPORT void SetBlockLength(const Standard_Integer aBL) ;
113 Standard_EXPORT Standard_Integer BlockLength() const;
135 Standard_EXPORT NMTTools_CommonBlockPool(const NMTTools_CommonBlockPool& AnArray);
138 Standard_EXPORT NMTTools_CommonBlockPool& Assign(const NMTTools_CommonBlockPool& Other) ;
139 NMTTools_CommonBlockPool& operator =(const NMTTools_CommonBlockPool& Other)
141 return Assign(Other);
146 Standard_EXPORT Standard_Boolean IsInvalidIndex(const Standard_Integer Index) const;
151 Standard_Address myStart;
152 Standard_Integer myLength;
153 Standard_Integer myFactLength;
154 Standard_Integer myBlockLength;
155 Standard_Boolean myIsAllocated;
164 // other Inline functions and methods (like "C++: function call" methods)