0023024: Update headers of OCCT files
[occt.git] / src / RWStepRepr / RWStepRepr_RWQuantifiedAssemblyComponentUsage.cxx
CommitLineData
b311480e 1// Created on: 2000-07-03
2// Created by: Andrey BETENEV
3// Copyright (c) 2000-2012 OPEN CASCADE SAS
4//
5// The content of this file is subject to the Open CASCADE Technology Public
6// License Version 6.5 (the "License"). You may not use the content of this file
7// except in compliance with the License. Please obtain a copy of the License
8// at http://www.opencascade.org and read it completely before using this file.
9//
10// The Initial Developer of the Original Code is Open CASCADE S.A.S., having its
11// main offices at: 1, place des Freres Montgolfier, 78280 Guyancourt, France.
12//
13// The Original Code and all software distributed under the License is
14// distributed on an "AS IS" basis, without warranty of any kind, and the
15// Initial Developer hereby disclaims all such warranties, including without
16// limitation, any warranties of merchantability, fitness for a particular
17// purpose or non-infringement. Please see the License for the specific terms
18// and conditions governing the rights and limitations under the License.
19
7fd59977 20// Generator: ExpToCas (EXPRESS -> CASCADE/XSTEP Translator) V1.1
7fd59977 21
22#include <RWStepRepr_RWQuantifiedAssemblyComponentUsage.ixx>
23
24//=======================================================================
25//function : RWStepRepr_RWQuantifiedAssemblyComponentUsage
26//purpose :
27//=======================================================================
28
29RWStepRepr_RWQuantifiedAssemblyComponentUsage::RWStepRepr_RWQuantifiedAssemblyComponentUsage ()
30{
31}
32
33//=======================================================================
34//function : ReadStep
35//purpose :
36//=======================================================================
37
38void RWStepRepr_RWQuantifiedAssemblyComponentUsage::ReadStep (const Handle(StepData_StepReaderData)& data,
39 const Standard_Integer num,
40 Handle(Interface_Check)& ach,
41 const Handle(StepRepr_QuantifiedAssemblyComponentUsage) &ent) const
42{
43 // Check number of parameters
44 if ( ! data->CheckNbParams(num,7,ach,"quantified_assembly_component_usage") ) return;
45
46 // Inherited fields of ProductDefinitionRelationship
47
48 Handle(TCollection_HAsciiString) aProductDefinitionRelationship_Id;
49 data->ReadString (num, 1, "product_definition_relationship.id", ach, aProductDefinitionRelationship_Id);
50
51 Handle(TCollection_HAsciiString) aProductDefinitionRelationship_Name;
52 data->ReadString (num, 2, "product_definition_relationship.name", ach, aProductDefinitionRelationship_Name);
53
54 Handle(TCollection_HAsciiString) aProductDefinitionRelationship_Description;
55 Standard_Boolean hasProductDefinitionRelationship_Description = Standard_True;
56 if ( data->IsParamDefined (num,3) ) {
57 data->ReadString (num, 3, "product_definition_relationship.description", ach, aProductDefinitionRelationship_Description);
58 }
59 else {
60 hasProductDefinitionRelationship_Description = Standard_False;
61 }
62
63 Handle(StepBasic_ProductDefinition) aProductDefinitionRelationship_RelatingProductDefinition;
64 data->ReadEntity (num, 4, "product_definition_relationship.relating_product_definition", ach, STANDARD_TYPE(StepBasic_ProductDefinition), aProductDefinitionRelationship_RelatingProductDefinition);
65
66 Handle(StepBasic_ProductDefinition) aProductDefinitionRelationship_RelatedProductDefinition;
67 data->ReadEntity (num, 5, "product_definition_relationship.related_product_definition", ach, STANDARD_TYPE(StepBasic_ProductDefinition), aProductDefinitionRelationship_RelatedProductDefinition);
68
69 // Inherited fields of AssemblyComponentUsage
70
71 Handle(TCollection_HAsciiString) aAssemblyComponentUsage_ReferenceDesignator;
72 Standard_Boolean hasAssemblyComponentUsage_ReferenceDesignator = Standard_True;
73 if ( data->IsParamDefined (num,6) ) {
74 data->ReadString (num, 6, "assembly_component_usage.reference_designator", ach, aAssemblyComponentUsage_ReferenceDesignator);
75 }
76 else {
77 hasAssemblyComponentUsage_ReferenceDesignator = Standard_False;
78 }
79
80 // Own fields of QuantifiedAssemblyComponentUsage
81
82 Handle(StepBasic_MeasureWithUnit) aQuantity;
83 data->ReadEntity (num, 7, "quantity", ach, STANDARD_TYPE(StepBasic_MeasureWithUnit), aQuantity);
84
85 // Initialize entity
86 ent->Init(aProductDefinitionRelationship_Id,
87 aProductDefinitionRelationship_Name,
88 hasProductDefinitionRelationship_Description,
89 aProductDefinitionRelationship_Description,
90 aProductDefinitionRelationship_RelatingProductDefinition,
91 aProductDefinitionRelationship_RelatedProductDefinition,
92 hasAssemblyComponentUsage_ReferenceDesignator,
93 aAssemblyComponentUsage_ReferenceDesignator,
94 aQuantity);
95}
96
97//=======================================================================
98//function : WriteStep
99//purpose :
100//=======================================================================
101
102void RWStepRepr_RWQuantifiedAssemblyComponentUsage::WriteStep (StepData_StepWriter& SW,
103 const Handle(StepRepr_QuantifiedAssemblyComponentUsage) &ent) const
104{
105
106 // Inherited fields of ProductDefinitionRelationship
107
108 SW.Send (ent->StepBasic_ProductDefinitionRelationship::Id());
109
110 SW.Send (ent->StepBasic_ProductDefinitionRelationship::Name());
111
112 if ( ent->StepBasic_ProductDefinitionRelationship::HasDescription() ) {
113 SW.Send (ent->StepBasic_ProductDefinitionRelationship::Description());
114 }
115 else SW.SendUndef();
116
117 SW.Send (ent->StepBasic_ProductDefinitionRelationship::RelatingProductDefinition());
118
119 SW.Send (ent->StepBasic_ProductDefinitionRelationship::RelatedProductDefinition());
120
121 // Inherited fields of AssemblyComponentUsage
122
123 if ( ent->StepRepr_AssemblyComponentUsage::HasReferenceDesignator() ) {
124 SW.Send (ent->StepRepr_AssemblyComponentUsage::ReferenceDesignator());
125 }
126 else SW.SendUndef();
127
128 // Own fields of QuantifiedAssemblyComponentUsage
129
130 SW.Send (ent->Quantity());
131}
132
133//=======================================================================
134//function : Share
135//purpose :
136//=======================================================================
137
138void RWStepRepr_RWQuantifiedAssemblyComponentUsage::Share (const Handle(StepRepr_QuantifiedAssemblyComponentUsage) &ent,
139 Interface_EntityIterator& iter) const
140{
141
142 // Inherited fields of ProductDefinitionRelationship
143
144 iter.AddItem (ent->StepBasic_ProductDefinitionRelationship::RelatingProductDefinition());
145
146 iter.AddItem (ent->StepBasic_ProductDefinitionRelationship::RelatedProductDefinition());
147
148 // Inherited fields of AssemblyComponentUsage
149
150 // Own fields of QuantifiedAssemblyComponentUsage
151
152 iter.AddItem (ent->Quantity());
153}