0024947: Redesign OCCT legacy type system -- automatic
[occt.git] / src / StepAP214 / StepAP214_DocumentReferenceItem.cxx
CommitLineData
973c2be1 1// Copyright (c) 1999-2014 OPEN CASCADE SAS
b311480e 2//
973c2be1 3// This file is part of Open CASCADE Technology software library.
b311480e 4//
d5f74e42 5// This library is free software; you can redistribute it and/or modify it under
6// the terms of the GNU Lesser General Public License version 2.1 as published
973c2be1 7// by the Free Software Foundation, with special exception defined in the file
8// OCCT_LGPL_EXCEPTION.txt. Consult the file LICENSE_LGPL_21.txt included in OCCT
9// distribution for complete text of the license and disclaimer of any warranty.
b311480e 10//
973c2be1 11// Alternatively, this file may be used under the terms of Open CASCADE
12// commercial license or contractual agreement.
7fd59977 13
14#include <StepAP214_DocumentReferenceItem.ixx>
15#include <Interface_Macros.hxx>
ec357c5c 16#include <StepBasic_Approval.hxx>
17#include <StepRepr_DescriptiveRepresentationItem.hxx>
18#include <StepRepr_MaterialDesignation.hxx>
19#include <StepBasic_ProductDefinition.hxx>
20#include <StepBasic_ProductDefinitionRelationship.hxx>
21#include <StepRepr_PropertyDefinition.hxx>
22#include <StepRepr_Representation.hxx>
23#include <StepRepr_ShapeAspect.hxx>
24#include <StepRepr_ShapeAspectRelationship.hxx>
7fd59977 25
26StepAP214_DocumentReferenceItem::StepAP214_DocumentReferenceItem () { }
27
28Standard_Integer StepAP214_DocumentReferenceItem::CaseNum(const Handle(Standard_Transient)& ent) const
29{
30 if (ent.IsNull()) return 0;
31 if (ent->IsKind(STANDARD_TYPE(StepBasic_Approval))) return 1;
32 if (ent->IsKind(STANDARD_TYPE(StepRepr_DescriptiveRepresentationItem))) return 2;
33 if (ent->IsKind(STANDARD_TYPE(StepRepr_MaterialDesignation))) return 3;
34 if (ent->IsKind(STANDARD_TYPE(StepBasic_ProductDefinition))) return 4;
35 if (ent->IsKind(STANDARD_TYPE(StepBasic_ProductDefinitionRelationship))) return 5;
36 if (ent->IsKind(STANDARD_TYPE(StepRepr_PropertyDefinition))) return 6;
37 if (ent->IsKind(STANDARD_TYPE(StepRepr_Representation))) return 7;
38 if (ent->IsKind(STANDARD_TYPE(StepRepr_ShapeAspect))) return 8;
39 if (ent->IsKind(STANDARD_TYPE(StepRepr_ShapeAspectRelationship))) return 9;
40 return 0;
41}
42
43
44Handle(StepBasic_Approval) StepAP214_DocumentReferenceItem::Approval() const
45{ return GetCasted(StepBasic_Approval,Value()); }
46
47Handle(StepRepr_DescriptiveRepresentationItem) StepAP214_DocumentReferenceItem::DescriptiveRepresentationItem() const
48{ return GetCasted(StepRepr_DescriptiveRepresentationItem,Value()); }
49
50Handle(StepRepr_MaterialDesignation) StepAP214_DocumentReferenceItem::MaterialDesignation() const
51{ return GetCasted(StepRepr_MaterialDesignation,Value()); }
52
53
54Handle(StepBasic_ProductDefinition) StepAP214_DocumentReferenceItem::ProductDefinition () const
55{ return GetCasted(StepBasic_ProductDefinition,Value()); }
56
57
58Handle(StepBasic_ProductDefinitionRelationship) StepAP214_DocumentReferenceItem::ProductDefinitionRelationship() const
59{ return GetCasted(StepBasic_ProductDefinitionRelationship,Value()); }
60
61Handle(StepRepr_PropertyDefinition) StepAP214_DocumentReferenceItem::PropertyDefinition() const
62{ return GetCasted(StepRepr_PropertyDefinition,Value()); }
63
64Handle(StepRepr_Representation) StepAP214_DocumentReferenceItem::Representation() const
65{ return GetCasted(StepRepr_Representation,Value()); }
66
67Handle(StepRepr_ShapeAspect) StepAP214_DocumentReferenceItem::ShapeAspect() const
68{ return GetCasted(StepRepr_ShapeAspect,Value()); }
69
70Handle(StepRepr_ShapeAspectRelationship) StepAP214_DocumentReferenceItem::ShapeAspectRelationship() const
71{ return GetCasted(StepRepr_ShapeAspectRelationship,Value()); }