0024947: Redesign OCCT legacy type system -- automatic
[occt.git] / src / RWStepRepr / RWStepRepr_RWStructuralResponsePropertyDefinitionRepresentation.cxx
CommitLineData
b311480e 1// Created on: 2002-12-15
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 <RWStepRepr_RWStructuralResponsePropertyDefinitionRepresentation.ixx>
ec357c5c 19#include <StepRepr_PropertyDefinition.hxx>
20#include <StepRepr_Representation.hxx>
7fd59977 21
22//=======================================================================
23//function : RWStepRepr_RWStructuralResponsePropertyDefinitionRepresentation
24//purpose :
25//=======================================================================
26
27RWStepRepr_RWStructuralResponsePropertyDefinitionRepresentation::RWStepRepr_RWStructuralResponsePropertyDefinitionRepresentation ()
28{
29}
30
31//=======================================================================
32//function : ReadStep
33//purpose :
34//=======================================================================
35
36void RWStepRepr_RWStructuralResponsePropertyDefinitionRepresentation::ReadStep (const Handle(StepData_StepReaderData)& data,
37 const Standard_Integer num,
38 Handle(Interface_Check)& ach,
39 const Handle(StepRepr_StructuralResponsePropertyDefinitionRepresentation) &ent) const
40{
41 // Check number of parameters
42 if ( ! data->CheckNbParams(num,2,ach,"structural_response_property_definition_representation") ) return;
43
44 // Inherited fields of PropertyDefinitionRepresentation
45
46 Handle(StepRepr_PropertyDefinition) aPropertyDefinitionRepresentation_Definition;
47 data->ReadEntity (num, 1, "property_definition_representation.definition", ach, STANDARD_TYPE(StepRepr_PropertyDefinition), aPropertyDefinitionRepresentation_Definition);
48
49 Handle(StepRepr_Representation) aPropertyDefinitionRepresentation_UsedRepresentation;
50 data->ReadEntity (num, 2, "property_definition_representation.used_representation", ach, STANDARD_TYPE(StepRepr_Representation), aPropertyDefinitionRepresentation_UsedRepresentation);
51
52 //skl 15.12.2002
53 StepRepr_RepresentedDefinition aRepresentedDefinition;
54 aRepresentedDefinition.SetValue(aPropertyDefinitionRepresentation_Definition);
55
56 // Initialize entity
57 ent->Init(/*aPropertyDefinitionRepresentation_Definition*/aRepresentedDefinition,
58 aPropertyDefinitionRepresentation_UsedRepresentation);
59}
60
61//=======================================================================
62//function : WriteStep
63//purpose :
64//=======================================================================
65
66void RWStepRepr_RWStructuralResponsePropertyDefinitionRepresentation::WriteStep (StepData_StepWriter& SW,
67 const Handle(StepRepr_StructuralResponsePropertyDefinitionRepresentation) &ent) const
68{
69
70 // Inherited fields of PropertyDefinitionRepresentation
71
72 SW.Send (ent->StepRepr_PropertyDefinitionRepresentation::Definition().Value());
73
74 SW.Send (ent->StepRepr_PropertyDefinitionRepresentation::UsedRepresentation());
75}
76
77//=======================================================================
78//function : Share
79//purpose :
80//=======================================================================
81
82void RWStepRepr_RWStructuralResponsePropertyDefinitionRepresentation::Share (const Handle(StepRepr_StructuralResponsePropertyDefinitionRepresentation) &ent,
83 Interface_EntityIterator& iter) const
84{
85
86 // Inherited fields of PropertyDefinitionRepresentation
87
88 iter.AddItem (ent->StepRepr_PropertyDefinitionRepresentation::Definition().Value());
89
90 iter.AddItem (ent->StepRepr_PropertyDefinitionRepresentation::UsedRepresentation());
91}