Salome HOME
Join modifications from branch BR_DEBUG_3_2_0b1
[modules/gui.git] / src / OBJECT / Handle_SALOME_AISShape.hxx
1 //  SALOME OBJECT : implementation of interactive object visualization for OCC and VTK viewers
2 //
3 //  Copyright (C) 2003  OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
4 //  CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS 
5 // 
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. 
10 // 
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. 
15 // 
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 
19 // 
20 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
21 //
22 //
23 //
24 //  File   : Handle_SALOME_AISShape.hxx
25 //  Module : SALOME
26
27 #ifndef _Handle_SALOME_AISShape_HeaderFile
28 #define _Handle_SALOME_AISShape_HeaderFile
29
30 #ifndef _Standard_Macro_HeaderFile
31 #include <Standard_Macro.hxx>
32 #endif
33 #ifndef _Standard_HeaderFile
34 #include <Standard.hxx>
35 #endif
36
37 #ifndef _Handle_AIS_Shape_HeaderFile
38 #include <Handle_AIS_Shape.hxx>
39 #endif
40
41 class Standard_Transient;
42 class Handle_Standard_Type;
43 /*!
44   \class Handle(AIS_Shape)
45   Smart pointer (handle) to AIS_Shape
46 */
47 class Handle(AIS_Shape);
48 class SALOME_AISShape;
49 Standard_EXPORT Handle_Standard_Type& STANDARD_TYPE(SALOME_AISShape);
50
51 /*!
52   \class Handle(SALOME_AISShape)
53   Smart pointer (handle) to SALOME_AISShape
54 */
55 class Handle(SALOME_AISShape) : public Handle(AIS_Shape) {
56   public:
57     inline void* operator new(size_t,void* anAddress) 
58       {
59         return anAddress;
60       }
61     inline void* operator new(size_t size) 
62       { 
63         return Standard::Allocate(size); 
64       }
65     inline void  operator delete(void *anAddress) 
66       { 
67         if (anAddress) Standard::Free((Standard_Address&)anAddress); 
68       }
69 //    inline void  operator delete(void *anAddress, size_t size) 
70 //      { 
71 //        if (anAddress) Standard::Free((Standard_Address&)anAddress,size); 
72 //      }
73     Handle(SALOME_AISShape)():Handle(AIS_Shape)() {} 
74     Handle(SALOME_AISShape)(const Handle(SALOME_AISShape)& aHandle) : Handle(AIS_Shape)(aHandle) 
75      {
76      }
77
78     Handle(SALOME_AISShape)(const SALOME_AISShape* anItem) : Handle(AIS_Shape)((AIS_Shape *)anItem) 
79      {
80      }
81
82     Handle(SALOME_AISShape)& operator=(const Handle(SALOME_AISShape)& aHandle)
83      {
84       Assign(aHandle.Access());
85       return *this;
86      }
87
88     Handle(SALOME_AISShape)& operator=(const SALOME_AISShape* anItem)
89      {
90       Assign((Standard_Transient *)anItem);
91       return *this;
92      }
93
94     SALOME_AISShape* operator->() 
95      {
96       return (SALOME_AISShape *)ControlAccess();
97      }
98
99     SALOME_AISShape* operator->() const 
100      {
101       return (SALOME_AISShape *)ControlAccess();
102      }
103
104    Standard_EXPORT ~Handle(SALOME_AISShape)();
105  
106    Standard_EXPORT static const Handle(SALOME_AISShape) DownCast(const Handle(Standard_Transient)& AnObject);
107 };
108 #endif