Salome HOME
Dump Python extension
[modules/geom.git] / src / GEOM / GEOM_Application.ixx
1 // Copyright (C) 2005  OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
2 // CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
3 // 
4 // This library is free software; you can redistribute it and/or
5 // modify it under the terms of the GNU Lesser General Public
6 // License as published by the Free Software Foundation; either 
7 // version 2.1 of the License.
8 // 
9 // This library is distributed in the hope that it will be useful 
10 // but WITHOUT ANY WARRANTY; without even the implied warranty of 
11 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU 
12 // Lesser General Public License for more details.
13 //
14 // You should have received a copy of the GNU Lesser General Public  
15 // License along with this library; if not, write to the Free Software 
16 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
17 //
18 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
19 //
20 //  File   : GEOM_Application.ixx
21 //  Module : GEOM
22
23 #include "GEOM_Application.jxx"
24
25 #ifndef _Standard_TypeMismatch_HeaderFile
26 #include <Standard_TypeMismatch.hxx>
27 #endif
28
29 GEOM_Application::~GEOM_Application() {}
30  
31
32
33 Standard_EXPORT Handle_Standard_Type& GEOM_Application_Type_()
34 {
35
36     static Handle_Standard_Type aType1 = STANDARD_TYPE(TDocStd_Application);
37   if ( aType1.IsNull()) aType1 = STANDARD_TYPE(TDocStd_Application);
38   static Handle_Standard_Type aType2 = STANDARD_TYPE(CDF_Application);
39   if ( aType2.IsNull()) aType2 = STANDARD_TYPE(CDF_Application);
40   static Handle_Standard_Type aType3 = STANDARD_TYPE(CDM_Application);
41   if ( aType3.IsNull()) aType3 = STANDARD_TYPE(CDM_Application);
42   static Handle_Standard_Type aType4 = STANDARD_TYPE(Standard_Transient);
43   if ( aType4.IsNull()) aType4 = STANDARD_TYPE(Standard_Transient);
44  
45
46   static Handle_Standard_Transient _Ancestors[]= {aType1,aType2,aType3,aType4,NULL};
47   static Handle_Standard_Type _aType = new Standard_Type("GEOM_Application",
48                                                          sizeof(GEOM_Application),
49                                                          1,
50                                                          (Standard_Address)_Ancestors,
51                                                          (Standard_Address)NULL);
52
53   return _aType;
54 }
55
56 // DownCast method
57 // allow safe downcasting
58
59
60 const Handle(GEOM_Application) Handle(GEOM_Application)::DownCast(const Handle(Standard_Transient)& AnObject)
61 {
62   Handle(GEOM_Application) _anOtherObject;
63
64   if (!AnObject.IsNull()) {
65      if (AnObject->IsKind(STANDARD_TYPE(GEOM_Application))) {
66        _anOtherObject = Handle(GEOM_Application)((Handle(GEOM_Application)&)AnObject);
67      }
68   }
69
70   return _anOtherObject ;
71 }
72
73
74 const Handle(Standard_Type)& GEOM_Application::DynamicType() const 
75
76   return STANDARD_TYPE(GEOM_Application) ; 
77 }
78 Standard_Boolean GEOM_Application::IsKind(const Handle(Standard_Type)& AType) const 
79
80   return (STANDARD_TYPE(GEOM_Application) == AType || TDocStd_Application::IsKind(AType)); 
81 }
82 Handle_GEOM_Application::~Handle_GEOM_Application() {}