X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FSMDS%2FSMDS_MeshIDFactory.hxx;h=fa37a28141bb7b48aba9bd9a7e40be827d8dcff2;hb=c63ee099ad2b149bd70136839c973e8910137bc5;hp=4c5581d0451bad83dd4b5d4d62f814c4a319885a;hpb=4791f5b30ea7a9c1247aa551750dc71cb83b99aa;p=modules%2Fsmesh.git diff --git a/src/SMDS/SMDS_MeshIDFactory.hxx b/src/SMDS/SMDS_MeshIDFactory.hxx index 4c5581d04..fa37a2814 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,20 @@ #ifndef _SMDS_MeshIDFactory_HeaderFile #define _SMDS_MeshIDFactory_HeaderFile -#ifndef _Standard_HeaderFile -#include -#endif -#ifndef _Handle_SMDS_MeshIDFactory_HeaderFile -#include "Handle_SMDS_MeshIDFactory.hxx" -#endif - -#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_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