1 // SMESH SMDS : implementaion of Salome mesh data structure
3 // Copyright (C) 2003 OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
4 // CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
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.
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.
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
20 // See http://www.opencascade.org/SALOME/ or email : webmaster.salome@opencascade.org
24 // File : Handle_SMDS_MeshElementIDFactory.hxx
27 #ifndef _Handle_SMDS_MeshElementIDFactory_HeaderFile
28 #define _Handle_SMDS_MeshElementIDFactory_HeaderFile
30 #ifndef _Standard_Macro_HeaderFile
31 #include <Standard_Macro.hxx>
33 #ifndef _Standard_HeaderFile
34 #include <Standard.hxx>
37 #ifndef _Handle_SMDS_MeshIDFactory_HeaderFile
38 #include "Handle_SMDS_MeshIDFactory.hxx"
41 class Standard_Transient;
42 class Handle_Standard_Type;
43 class Handle(SMDS_MeshIDFactory);
44 class SMDS_MeshElementIDFactory;
45 Standard_EXPORT Handle_Standard_Type& STANDARD_TYPE(SMDS_MeshElementIDFactory);
47 class Handle(SMDS_MeshElementIDFactory) : public Handle(SMDS_MeshIDFactory) {
49 inline void* operator new(size_t,void* anAddress)
53 inline void* operator new(size_t size)
55 return Standard::Allocate(size);
57 inline void operator delete(void *anAddress)
59 if (anAddress) Standard::Free((Standard_Address&)anAddress);
61 // inline void operator delete(void *anAddress, size_t size)
63 // if (anAddress) Standard::Free((Standard_Address&)anAddress,size);
65 Handle(SMDS_MeshElementIDFactory)():Handle(SMDS_MeshIDFactory)() {}
66 Handle(SMDS_MeshElementIDFactory)(const Handle(SMDS_MeshElementIDFactory)& aHandle) : Handle(SMDS_MeshIDFactory)(aHandle)
70 Handle(SMDS_MeshElementIDFactory)(const SMDS_MeshElementIDFactory* anItem) : Handle(SMDS_MeshIDFactory)((SMDS_MeshIDFactory *)anItem)
74 Handle(SMDS_MeshElementIDFactory)& operator=(const Handle(SMDS_MeshElementIDFactory)& aHandle)
76 Assign(aHandle.Access());
80 Handle(SMDS_MeshElementIDFactory)& operator=(const SMDS_MeshElementIDFactory* anItem)
82 Assign((Standard_Transient *)anItem);
86 SMDS_MeshElementIDFactory* operator->()
88 return (SMDS_MeshElementIDFactory *)ControlAccess();
91 SMDS_MeshElementIDFactory* operator->() const
93 return (SMDS_MeshElementIDFactory *)ControlAccess();
96 Standard_EXPORT ~Handle(SMDS_MeshElementIDFactory)();
98 Standard_EXPORT static const Handle(SMDS_MeshElementIDFactory) DownCast(const Handle(Standard_Transient)& AnObject);