00001 // Copyright (C) 2007-2011 CEA/DEN, EDF R&D, OPEN CASCADE 00002 // 00003 // Copyright (C) 2003-2007 OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN, 00004 // CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS 00005 // 00006 // This library is free software; you can redistribute it and/or 00007 // modify it under the terms of the GNU Lesser General Public 00008 // License as published by the Free Software Foundation; either 00009 // version 2.1 of the License. 00010 // 00011 // This library is distributed in the hope that it will be useful, 00012 // but WITHOUT ANY WARRANTY; without even the implied warranty of 00013 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 00014 // Lesser General Public License for more details. 00015 // 00016 // You should have received a copy of the GNU Lesser General Public 00017 // License along with this library; if not, write to the Free Software 00018 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 00019 // 00020 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com 00021 // 00022 00023 // GEOM OBJECT : interactive object for Geometry entities visualization 00024 // File : Handle_GEOM_InteractiveObject.hxx 00025 // Module : GEOM 00026 // 00027 #ifndef _Handle_GEOM_InteractiveObject_HeaderFile 00028 #define _Handle_GEOM_InteractiveObject_HeaderFile 00029 00030 #ifndef _Standard_Macro_HeaderFile 00031 #include <Standard_Macro.hxx> 00032 #endif 00033 #ifndef _Standard_HeaderFile 00034 #include <Standard.hxx> 00035 #endif 00036 00037 #ifndef _Handle_SALOME_InteractiveObject_HeaderFile 00038 #include "Handle_SALOME_InteractiveObject.hxx" 00039 #endif 00040 00041 class Standard_Transient; 00042 class Handle_Standard_Type; 00043 class Handle(SALOME_InteractiveObject); 00044 class GEOM_InteractiveObject; 00045 Standard_EXPORT Handle_Standard_Type& STANDARD_TYPE(GEOM_InteractiveObject); 00046 00047 class Handle(GEOM_InteractiveObject) : public Handle(SALOME_InteractiveObject) { 00048 public: 00049 inline void* operator new(size_t,void* anAddress) 00050 { 00051 return anAddress; 00052 } 00053 inline void* operator new(size_t size) 00054 { 00055 return Standard::Allocate(size); 00056 } 00057 inline void operator delete(void *anAddress) 00058 { 00059 if (anAddress) Standard::Free((Standard_Address&)anAddress); 00060 } 00061 // inline void operator delete(void *anAddress, size_t size) 00062 // { 00063 // if (anAddress) Standard::Free((Standard_Address&)anAddress,size); 00064 // } 00065 Handle(GEOM_InteractiveObject)():Handle(SALOME_InteractiveObject)() {} 00066 Handle(GEOM_InteractiveObject)(const Handle(GEOM_InteractiveObject)& aHandle) : Handle(SALOME_InteractiveObject)(aHandle) 00067 { 00068 } 00069 00070 Handle(GEOM_InteractiveObject)(const GEOM_InteractiveObject* anItem) : Handle(SALOME_InteractiveObject)((SALOME_InteractiveObject *)anItem) 00071 { 00072 } 00073 00074 Handle(GEOM_InteractiveObject)& operator=(const Handle(GEOM_InteractiveObject)& aHandle) 00075 { 00076 Assign(aHandle.Access()); 00077 return *this; 00078 } 00079 00080 Handle(GEOM_InteractiveObject)& operator=(const GEOM_InteractiveObject* anItem) 00081 { 00082 Assign((Standard_Transient *)anItem); 00083 return *this; 00084 } 00085 00086 GEOM_InteractiveObject* operator->() 00087 { 00088 return (GEOM_InteractiveObject *)ControlAccess(); 00089 } 00090 00091 GEOM_InteractiveObject* operator->() const 00092 { 00093 return (GEOM_InteractiveObject *)ControlAccess(); 00094 } 00095 00096 Standard_EXPORT ~Handle(GEOM_InteractiveObject)(); 00097 00098 Standard_EXPORT static const Handle(GEOM_InteractiveObject) DownCast(const Handle(Standard_Transient)& AnObject); 00099 }; 00100 #endif