/src/contrib/geom-5.1.2.7/inc_pythonocc/NMTTools_CommonBlockPool.hxx

http://pythonocc.googlecode.com/ · C++ Header · 170 lines · 74 code · 63 blank · 33 comment · 1 complexity · b311847df6c2ec55d807e35276056876 MD5 · raw file

  1. // Copyright (C) 2007-2008 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. #ifndef _NMTTools_CommonBlockPool_HeaderFile
  23. #define _NMTTools_CommonBlockPool_HeaderFile
  24. #ifndef _Standard_Address_HeaderFile
  25. #include <Standard_Address.hxx>
  26. #endif
  27. #ifndef _Standard_Integer_HeaderFile
  28. #include <Standard_Integer.hxx>
  29. #endif
  30. #ifndef _Standard_Boolean_HeaderFile
  31. #include <Standard_Boolean.hxx>
  32. #endif
  33. class Standard_OutOfRange;
  34. class Standard_OutOfMemory;
  35. class NMTTools_ListOfCommonBlock;
  36. #ifndef _Standard_HeaderFile
  37. #include <Standard.hxx>
  38. #endif
  39. #ifndef _Standard_Macro_HeaderFile
  40. #include <Standard_Macro.hxx>
  41. #endif
  42. class NMTTools_CommonBlockPool {
  43. public:
  44. void* operator new(size_t,void* anAddress)
  45. {
  46. return anAddress;
  47. }
  48. void* operator new(size_t size)
  49. {
  50. return Standard::Allocate(size);
  51. }
  52. void operator delete(void *anAddress)
  53. {
  54. if (anAddress) Standard::Free((Standard_Address&)anAddress);
  55. }
  56. // Methods PUBLIC
  57. //
  58. Standard_EXPORT NMTTools_CommonBlockPool(const Standard_Integer Length = 0,const Standard_Integer BlockLength = 5);
  59. Standard_EXPORT void Resize(const Standard_Integer theNewLength) ;
  60. Standard_EXPORT void Destroy() ;
  61. ~NMTTools_CommonBlockPool()
  62. {
  63. Destroy();
  64. }
  65. Standard_EXPORT Standard_Integer Length() const;
  66. Standard_EXPORT Standard_Integer Extent() const;
  67. Standard_EXPORT Standard_Integer FactLength() const;
  68. Standard_EXPORT Standard_Integer Append(const NMTTools_ListOfCommonBlock& Value) ;
  69. Standard_EXPORT void Remove(const Standard_Integer Index) ;
  70. Standard_EXPORT const NMTTools_ListOfCommonBlock& Value(const Standard_Integer Index) const;
  71. const NMTTools_ListOfCommonBlock& operator ()(const Standard_Integer Index) const
  72. {
  73. return Value(Index);
  74. }
  75. Standard_EXPORT NMTTools_ListOfCommonBlock& ChangeValue(const Standard_Integer Index) ;
  76. NMTTools_ListOfCommonBlock& operator ()(const Standard_Integer Index)
  77. {
  78. return ChangeValue(Index);
  79. }
  80. Standard_EXPORT void SetBlockLength(const Standard_Integer aBL) ;
  81. Standard_EXPORT Standard_Integer BlockLength() const;
  82. protected:
  83. // Methods PROTECTED
  84. //
  85. // Fields PROTECTED
  86. //
  87. private:
  88. // Methods PRIVATE
  89. //
  90. Standard_EXPORT NMTTools_CommonBlockPool(const NMTTools_CommonBlockPool& AnArray);
  91. Standard_EXPORT NMTTools_CommonBlockPool& Assign(const NMTTools_CommonBlockPool& Other) ;
  92. NMTTools_CommonBlockPool& operator =(const NMTTools_CommonBlockPool& Other)
  93. {
  94. return Assign(Other);
  95. }
  96. Standard_EXPORT Standard_Boolean IsInvalidIndex(const Standard_Integer Index) const;
  97. // Fields PRIVATE
  98. //
  99. Standard_Address myStart;
  100. Standard_Integer myLength;
  101. Standard_Integer myFactLength;
  102. Standard_Integer myBlockLength;
  103. Standard_Boolean myIsAllocated;
  104. };
  105. // other Inline functions and methods (like "C++: function call" methods)
  106. //
  107. #endif