0024830: Remove redundant keyword 'mutable' in CDL declarations
[occt.git] / src / StepRepr / StepRepr_RepresentedDefinition.cxx
CommitLineData
b311480e 1// Created on: 2002-12-12
2// Created by: data exchange team
973c2be1 3// Copyright (c) 2002-2014 OPEN CASCADE SAS
b311480e 4//
973c2be1 5// This file is part of Open CASCADE Technology software library.
b311480e 6//
d5f74e42 7// This library is free software; you can redistribute it and/or modify it under
8// the terms of the GNU Lesser General Public License version 2.1 as published
973c2be1 9// by the Free Software Foundation, with special exception defined in the file
10// OCCT_LGPL_EXCEPTION.txt. Consult the file LICENSE_LGPL_21.txt included in OCCT
11// distribution for complete text of the license and disclaimer of any warranty.
b311480e 12//
973c2be1 13// Alternatively, this file may be used under the terms of Open CASCADE
14// commercial license or contractual agreement.
b311480e 15
7fd59977 16// Generator: ExpToCas (EXPRESS -> CASCADE/XSTEP Translator) V1.2
7fd59977 17
18#include <StepRepr_RepresentedDefinition.ixx>
19
20//=======================================================================
21//function : StepRepr_RepresentedDefinition
22//purpose :
23//=======================================================================
24
25StepRepr_RepresentedDefinition::StepRepr_RepresentedDefinition ()
26{
27}
28
29//=======================================================================
30//function : CaseNum
31//purpose :
32//=======================================================================
33
34Standard_Integer StepRepr_RepresentedDefinition::CaseNum (const Handle(Standard_Transient)& ent) const
35{
36 if (ent.IsNull()) return 0;
37 if (ent->IsKind(STANDARD_TYPE(StepBasic_GeneralProperty))) return 1;
38 if (ent->IsKind(STANDARD_TYPE(StepRepr_PropertyDefinition))) return 2;
39 if (ent->IsKind(STANDARD_TYPE(StepRepr_PropertyDefinitionRelationship))) return 3;
40 if (ent->IsKind(STANDARD_TYPE(StepRepr_ShapeAspect))) return 4;
41 if (ent->IsKind(STANDARD_TYPE(StepRepr_ShapeAspectRelationship))) return 5;
42 return 0;
43}
44
45//=======================================================================
46//function : GeneralProperty
47//purpose :
48//=======================================================================
49
50Handle(StepBasic_GeneralProperty) StepRepr_RepresentedDefinition::GeneralProperty () const
51{
52 return Handle(StepBasic_GeneralProperty)::DownCast(Value());
53}
54
55//=======================================================================
56//function : PropertyDefinition
57//purpose :
58//=======================================================================
59
60Handle(StepRepr_PropertyDefinition) StepRepr_RepresentedDefinition::PropertyDefinition () const
61{
62 return Handle(StepRepr_PropertyDefinition)::DownCast(Value());
63}
64
65//=======================================================================
66//function : PropertyDefinitionRelationship
67//purpose :
68//=======================================================================
69
70Handle(StepRepr_PropertyDefinitionRelationship) StepRepr_RepresentedDefinition::PropertyDefinitionRelationship () const
71{
72 return Handle(StepRepr_PropertyDefinitionRelationship)::DownCast(Value());
73}
74
75//=======================================================================
76//function : ShapeAspect
77//purpose :
78//=======================================================================
79
80Handle(StepRepr_ShapeAspect) StepRepr_RepresentedDefinition::ShapeAspect () const
81{
82 return Handle(StepRepr_ShapeAspect)::DownCast(Value());
83}
84
85//=======================================================================
86//function : ShapeAspectRelationship
87//purpose :
88//=======================================================================
89
90Handle(StepRepr_ShapeAspectRelationship) StepRepr_RepresentedDefinition::ShapeAspectRelationship () const
91{
92 return Handle(StepRepr_ShapeAspectRelationship)::DownCast(Value());
93}