mirror of
https://git.salome-platform.org/gitpub/modules/geom.git
synced 2025-01-15 01:50:36 +05:00
78 lines
2.1 KiB
C++
78 lines
2.1 KiB
C++
// File : Handle_GEOM_Application.hxx
|
|
// Module : GEOM
|
|
|
|
#ifndef _Handle_GEOM_Application_HeaderFile
|
|
#define _Handle_GEOM_Application_HeaderFile
|
|
|
|
#ifndef _Standard_Macro_HeaderFile
|
|
#include <Standard_Macro.hxx>
|
|
#endif
|
|
#ifndef _Standard_HeaderFile
|
|
#include <Standard.hxx>
|
|
#endif
|
|
|
|
#ifndef _Handle_TDocStd_Application_HeaderFile
|
|
#include <Handle_TDocStd_Application.hxx>
|
|
#endif
|
|
|
|
class Standard_Transient;
|
|
class Handle_Standard_Type;
|
|
class Handle(TDocStd_Application);
|
|
class GEOM_Application;
|
|
Standard_EXPORT Handle_Standard_Type& STANDARD_TYPE(SimpleOCAF_Application);
|
|
|
|
class Handle(GEOM_Application) : public Handle(TDocStd_Application) {
|
|
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);
|
|
// }
|
|
Handle(GEOM_Application)():Handle(TDocStd_Application)() {}
|
|
Handle(GEOM_Application)(const Handle(GEOM_Application)& aHandle) : Handle(TDocStd_Application)(aHandle)
|
|
{
|
|
}
|
|
|
|
Handle(GEOM_Application)(const GEOM_Application* anItem) : Handle(TDocStd_Application)((TDocStd_Application *)anItem)
|
|
{
|
|
}
|
|
|
|
Handle(GEOM_Application)& operator=(const Handle(GEOM_Application)& aHandle)
|
|
{
|
|
Assign(aHandle.Access());
|
|
return *this;
|
|
}
|
|
|
|
Handle(GEOM_Application)& operator=(const GEOM_Application* anItem)
|
|
{
|
|
Assign((Standard_Transient *)anItem);
|
|
return *this;
|
|
}
|
|
|
|
GEOM_Application* operator->()
|
|
{
|
|
return (GEOM_Application *)ControlAccess();
|
|
}
|
|
|
|
GEOM_Application* operator->() const
|
|
{
|
|
return (GEOM_Application *)ControlAccess();
|
|
}
|
|
|
|
Standard_EXPORT ~Handle(GEOM_Application)();
|
|
|
|
Standard_EXPORT static const Handle(GEOM_Application) DownCast(const Handle(Standard_Transient)& AnObject);
|
|
};
|
|
#endif
|