Salome HOME
*** empty log message ***
[modules/geom.git] / src / GEOMAlgo / GEOMAlgo_HAlgo.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 #include <GEOMAlgo_HAlgo.jxx>
21
22 #ifndef _Standard_TypeMismatch_HeaderFile
23 #include <Standard_TypeMismatch.hxx>
24 #endif
25
26 //GEOMAlgo_HAlgo::~GEOMAlgo_HAlgo() {}
27  
28
29
30 Standard_EXPORT Handle_Standard_Type& GEOMAlgo_HAlgo_Type_()
31 {
32
33     static Handle_Standard_Type aType1 = STANDARD_TYPE(MMgt_TShared);
34   static Handle_Standard_Type aType2 = STANDARD_TYPE(Standard_Transient);
35  
36
37   static Handle_Standard_Transient _Ancestors[]= {aType1,aType2,NULL};
38   static Handle_Standard_Type _aType = new Standard_Type("GEOMAlgo_HAlgo",
39                                                          sizeof(GEOMAlgo_HAlgo),
40                                                          1,
41                                                          (Standard_Address)_Ancestors,
42                                                          (Standard_Address)NULL);
43
44   return _aType;
45 }
46
47
48 // DownCast method
49 //   allow safe downcasting
50 //
51 const Handle(GEOMAlgo_HAlgo) Handle(GEOMAlgo_HAlgo)::DownCast(const Handle(Standard_Transient)& AnObject) 
52 {
53   Handle(GEOMAlgo_HAlgo) _anOtherObject;
54
55   if (!AnObject.IsNull()) {
56      if (AnObject->IsKind(STANDARD_TYPE(GEOMAlgo_HAlgo))) {
57        _anOtherObject = Handle(GEOMAlgo_HAlgo)((Handle(GEOMAlgo_HAlgo)&)AnObject);
58      }
59   }
60
61   return _anOtherObject ;
62 }
63 const Handle(Standard_Type)& GEOMAlgo_HAlgo::DynamicType() const 
64
65   return STANDARD_TYPE(GEOMAlgo_HAlgo) ; 
66 }
67 //Standard_Boolean GEOMAlgo_HAlgo::IsKind(const Handle(Standard_Type)& AType) const 
68 //{ 
69 //  return (STANDARD_TYPE(GEOMAlgo_HAlgo) == AType || MMgt_TShared::IsKind(AType)); 
70 //}
71 //Handle_GEOMAlgo_HAlgo::~Handle_GEOMAlgo_HAlgo() {}
72