Salome HOME
Merge from V6_main 01/04/2013
[modules/gui.git] / src / OBJECT / Handle_SALOME_AISShape.hxx
1 // Copyright (C) 2007-2013  CEA/DEN, EDF R&D, OPEN CASCADE
2 //
3 // Copyright (C) 2003-2007  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 //  SALOME OBJECT : implementation of interactive object visualization for OCC and VTK viewers
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 #ifndef _AIS_TexturedShape_HeaderFile
41 #include <AIS_TexturedShape.hxx>
42 #endif
43
44 class Standard_Transient;
45 class Handle_Standard_Type;
46 /*!
47   \class Handle(AIS_Shape)
48   Smart pointer (handle) to AIS_Shape
49 */
50 // class Handle(AIS_Shape);
51 class Handle(AIS_TexturedShape);
52 class SALOME_AISShape;
53 Standard_EXPORT Handle_Standard_Type& STANDARD_TYPE(SALOME_AISShape);
54
55 /*!
56   \class Handle(SALOME_AISShape)
57   Smart pointer (handle) to SALOME_AISShape
58 */
59 class Handle(SALOME_AISShape) : public Handle(AIS_TexturedShape) {
60   public:
61     inline void* operator new(size_t,void* anAddress) 
62       {
63         return anAddress;
64       }
65     inline void* operator new(size_t size) 
66       { 
67         return Standard::Allocate(size); 
68       }
69     inline void  operator delete(void *anAddress) 
70       { 
71         if (anAddress) Standard::Free((Standard_Address&)anAddress); 
72       }
73 //    inline void  operator delete(void *anAddress, size_t size) 
74 //      { 
75 //        if (anAddress) Standard::Free((Standard_Address&)anAddress,size); 
76 //      }
77     Handle(SALOME_AISShape)():Handle(AIS_TexturedShape)() {} 
78     Handle(SALOME_AISShape)(const Handle(SALOME_AISShape)& aHandle) : Handle(AIS_TexturedShape)(aHandle) 
79      {
80      }
81
82     Handle(SALOME_AISShape)(const SALOME_AISShape* anItem) : Handle(AIS_TexturedShape)((AIS_TexturedShape *)anItem) 
83      {
84      }
85
86     Handle(SALOME_AISShape)& operator=(const Handle(SALOME_AISShape)& aHandle)
87      {
88       Assign(aHandle.Access());
89       return *this;
90      }
91
92     Handle(SALOME_AISShape)& operator=(const SALOME_AISShape* anItem)
93      {
94       Assign((Standard_Transient *)anItem);
95       return *this;
96      }
97
98     SALOME_AISShape* operator->() 
99      {
100       return (SALOME_AISShape *)ControlAccess();
101      }
102
103     SALOME_AISShape* operator->() const 
104      {
105       return (SALOME_AISShape *)ControlAccess();
106      }
107
108    Standard_EXPORT ~Handle(SALOME_AISShape)();
109  
110    Standard_EXPORT static const Handle(SALOME_AISShape) DownCast(const Handle(Standard_Transient)& AnObject);
111 };
112 #endif