Salome HOME
Merge from V6_main_20120808 08Aug12
[modules/gui.git] / src / OBJECT / Handle_SALOME_AISObject.hxx
1 // Copyright (C) 2007-2012  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_AISObject.hxx
25 //  Module : SALOME
26 //
27 #ifndef _Handle_SALOME_AISObject_HeaderFile
28 #define _Handle_SALOME_AISObject_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_InteractiveObject_HeaderFile
38 #include <Handle_AIS_InteractiveObject.hxx>
39 #endif
40
41 class Standard_Transient;
42 class Handle_Standard_Type;
43 /*!
44   \class Handle(AIS_InteractiveObject)
45   Smart pointer (handle) to AIS_InteractiveObject
46 */
47 class Handle(AIS_InteractiveObject);
48 class SALOME_AISObject;
49 Standard_EXPORT Handle_Standard_Type& STANDARD_TYPE(SALOME_AISObject);
50
51 /*!
52   \class Handle(SALOME_AISObject)
53   Smart pointer (handle) to SALOME_AISObject
54 */
55 class Handle(SALOME_AISObject) : public Handle(AIS_InteractiveObject) {
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_AISObject)():Handle(AIS_InteractiveObject)() {} 
74     Handle(SALOME_AISObject)(const Handle(SALOME_AISObject)& aHandle) : Handle(AIS_InteractiveObject)(aHandle) 
75      {
76      }
77
78     Handle(SALOME_AISObject)(const SALOME_AISObject* anItem) : Handle(AIS_InteractiveObject)((AIS_InteractiveObject *)anItem) 
79      {
80      }
81
82     Handle(SALOME_AISObject)& operator=(const Handle(SALOME_AISObject)& aHandle)
83      {
84       Assign(aHandle.Access());
85       return *this;
86      }
87
88     Handle(SALOME_AISObject)& operator=(const SALOME_AISObject* anItem)
89      {
90       Assign((Standard_Transient *)anItem);
91       return *this;
92      }
93
94     SALOME_AISObject* operator->() 
95      {
96       return (SALOME_AISObject *)ControlAccess();
97      }
98
99     SALOME_AISObject* operator->() const 
100      {
101       return (SALOME_AISObject *)ControlAccess();
102      }
103
104    Standard_EXPORT ~Handle(SALOME_AISObject)();
105  
106    Standard_EXPORT static const Handle(SALOME_AISObject) DownCast(const Handle(Standard_Transient)& AnObject);
107 };
108 #endif