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