1 // SMESH SMDS : implementaion of Salome mesh data structure
3 // Copyright (C) 2003 OPEN CASCADE
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.
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.
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
19 // See http://www.opencascade.org or email : webmaster@opencascade.org
23 // File : SMDSControl_MeshBoundary.ixx
26 #include "SMDSControl_MeshBoundary.jxx"
28 #ifndef _Standard_TypeMismatch_HeaderFile
29 #include "Standard_TypeMismatch.hxx"
32 SMDSControl_MeshBoundary::~SMDSControl_MeshBoundary() {}
36 Standard_EXPORT Handle_Standard_Type& SMDSControl_MeshBoundary_Type_()
39 static Handle_Standard_Type aType1 = STANDARD_TYPE(MMgt_TShared);
40 if ( aType1.IsNull()) aType1 = STANDARD_TYPE(MMgt_TShared);
41 static Handle_Standard_Type aType2 = STANDARD_TYPE(Standard_Transient);
42 if ( aType2.IsNull()) aType2 = STANDARD_TYPE(Standard_Transient);
45 static Handle_Standard_Transient _Ancestors[]= {aType1,aType2,NULL};
46 static Handle_Standard_Type _aType = new Standard_Type("SMDSControl_MeshBoundary",
47 sizeof(SMDSControl_MeshBoundary),
49 (Standard_Address)_Ancestors,
50 (Standard_Address)NULL);
57 // allow safe downcasting
59 const Handle(SMDSControl_MeshBoundary) Handle(SMDSControl_MeshBoundary)::DownCast(const Handle(Standard_Transient)& AnObject)
61 Handle(SMDSControl_MeshBoundary) _anOtherObject;
63 if (!AnObject.IsNull()) {
64 if (AnObject->IsKind(STANDARD_TYPE(SMDSControl_MeshBoundary))) {
65 _anOtherObject = Handle(SMDSControl_MeshBoundary)((Handle(SMDSControl_MeshBoundary)&)AnObject);
69 return _anOtherObject ;
71 const Handle(Standard_Type)& SMDSControl_MeshBoundary::DynamicType() const
73 return STANDARD_TYPE(SMDSControl_MeshBoundary) ;
75 Standard_Boolean SMDSControl_MeshBoundary::IsKind(const Handle(Standard_Type)& AType) const
77 return (STANDARD_TYPE(SMDSControl_MeshBoundary) == AType || MMgt_TShared::IsKind(AType));
79 Handle_SMDSControl_MeshBoundary::~Handle_SMDSControl_MeshBoundary() {}