X-Git-Url: http://git.salome-platform.org/gitweb/?p=modules%2Fsmesh.git;a=blobdiff_plain;f=src%2FSMDS%2FSMDS_MeshIDFactory.hxx;h=8e57247dad9b3876094e99cb614bc1af5d98c9b3;hp=4c5581d0451bad83dd4b5d4d62f814c4a319885a;hb=9d11375af40826e967ab2c3bcb77d1f9d439c90c;hpb=4791f5b30ea7a9c1247aa551750dc71cb83b99aa diff --git a/src/SMDS/SMDS_MeshIDFactory.hxx b/src/SMDS/SMDS_MeshIDFactory.hxx index 4c5581d04..8e57247da 100644 --- a/src/SMDS/SMDS_MeshIDFactory.hxx +++ b/src/SMDS/SMDS_MeshIDFactory.hxx @@ -17,7 +17,7 @@ // License along with this library; if not, write to the Free Software // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA // -// See http://www.opencascade.org/SALOME/ or email : webmaster.salome@opencascade.org +// See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com // // // @@ -27,90 +27,22 @@ #ifndef _SMDS_MeshIDFactory_HeaderFile #define _SMDS_MeshIDFactory_HeaderFile -#ifndef _Standard_HeaderFile -#include -#endif -#ifndef _Handle_SMDS_MeshIDFactory_HeaderFile -#include "Handle_SMDS_MeshIDFactory.hxx" -#endif +#include "SMESH_SMDS.hxx" -#ifndef _Standard_Integer_HeaderFile -#include -#endif -#ifndef _TColStd_StackOfInteger_HeaderFile -#include -#endif -#ifndef _SMDS_MeshObject_HeaderFile #include "SMDS_MeshObject.hxx" -#endif - - -class SMDS_MeshIDFactory : public SMDS_MeshObject { - -public: - - inline void* operator new(size_t,void* anAddress) - { - return anAddress; - } - inline void* operator new(size_t size) - { - return Standard::Allocate(size); - } - inline void operator delete(void *anAddress) - { - if (anAddress) Standard::Free((Standard_Address&)anAddress); - } -// inline void operator delete(void *anAddress, size_t size) -// { -// if (anAddress) Standard::Free((Standard_Address&)anAddress,size); -// } - // Methods PUBLIC - // -Standard_EXPORT virtual Standard_Integer GetFreeID() = 0; -Standard_EXPORT virtual void ReleaseID(const Standard_Integer ID) = 0; -Standard_EXPORT ~SMDS_MeshIDFactory(); - - - - - // Type management - // - Standard_EXPORT friend Handle_Standard_Type& SMDS_MeshIDFactory_Type_(); - Standard_EXPORT const Handle(Standard_Type)& DynamicType() const; - Standard_EXPORT Standard_Boolean IsKind(const Handle(Standard_Type)&) const; - -protected: +#include - // Methods PROTECTED - // -Standard_EXPORT SMDS_MeshIDFactory(); - - - // Fields PROTECTED - // -Standard_Integer myMaxID; -TColStd_StackOfInteger myPoolOfID; - - -private: - - // Methods PRIVATE - // - - - // Fields PRIVATE - // +class SMDS_EXPORT SMDS_MeshIDFactory:public SMDS_MeshObject +{ + public: + virtual int GetFreeID(); + virtual void ReleaseID(int ID); + protected: + SMDS_MeshIDFactory(); + int myMaxID; + std::set myPoolOfID; }; - - - - -// other inline functions and methods (like "C++: function call" methods) -// - - #endif