0023024: Update headers of OCCT files
[occt.git] / src / RWStepRepr / RWStepRepr_RWAssemblyComponentUsageSubstitute.cxx
CommitLineData
b311480e 1// Copyright (c) 1999-2012 OPEN CASCADE SAS
2//
3// The content of this file is subject to the Open CASCADE Technology Public
4// License Version 6.5 (the "License"). You may not use the content of this file
5// except in compliance with the License. Please obtain a copy of the License
6// at http://www.opencascade.org and read it completely before using this file.
7//
8// The Initial Developer of the Original Code is Open CASCADE S.A.S., having its
9// main offices at: 1, place des Freres Montgolfier, 78280 Guyancourt, France.
10//
11// The Original Code and all software distributed under the License is
12// distributed on an "AS IS" basis, without warranty of any kind, and the
13// Initial Developer hereby disclaims all such warranties, including without
14// limitation, any warranties of merchantability, fitness for a particular
15// purpose or non-infringement. Please see the License for the specific terms
16// and conditions governing the rights and limitations under the License.
17
7fd59977 18//gka 05.03.99 S4134 upgrade from CD to DIS
19#include <RWStepRepr_RWAssemblyComponentUsageSubstitute.ixx>
20#include <StepRepr_AssemblyComponentUsage.hxx>
21
22
23#include <Interface_EntityIterator.hxx>
24
25
26#include <StepRepr_AssemblyComponentUsageSubstitute.hxx>
27
28
29RWStepRepr_RWAssemblyComponentUsageSubstitute::RWStepRepr_RWAssemblyComponentUsageSubstitute () {}
30
31void RWStepRepr_RWAssemblyComponentUsageSubstitute::ReadStep
32 (const Handle(StepData_StepReaderData)& data,
33 const Standard_Integer num,
34 Handle(Interface_Check)& ach,
35 const Handle(StepRepr_AssemblyComponentUsageSubstitute)& ent) const
36{
37
38
39 // --- Number of Parameter Control ---
40
41 if (!data->CheckNbParams(num,4,ach,"assembly_component_usage_substitute")) return;
42
43 // --- inherited field : name ---
44
45 Handle(TCollection_HAsciiString) aName;
46 //szv#4:S4163:12Mar99 `Standard_Boolean stat1 =` not needed
47 data->ReadString (num,1,"name",ach,aName);
48
49 // --- inherited field : definition ---
50
51 Handle(TCollection_HAsciiString) aDef;
52 if (data->IsParamDefined (num,2)) { //gka 05.03.99 S4134 upgrade from CD to DIS
53 //szv#4:S4163:12Mar99 `Standard_Boolean stat2 =` not needed
54 data->ReadString (num,2,"definition",ach,aDef);
55 }
56 // --- own field : base ---
57
58 Handle(StepRepr_AssemblyComponentUsage) aBase;
59 //szv#4:S4163:12Mar99 `Standard_Boolean stat3 =` not needed
60 data->ReadEntity(num, 3,"base", ach, STANDARD_TYPE(StepRepr_AssemblyComponentUsage), aBase);
61
62 // --- own field : substitute ---
63
64 Handle(StepRepr_AssemblyComponentUsage) aSubs;
65 //szv#4:S4163:12Mar99 `Standard_Boolean stat4 =` not needed
66 data->ReadEntity(num, 4,"substitute", ach, STANDARD_TYPE(StepRepr_AssemblyComponentUsage), aSubs);
67
68 //--- Initialisation of the read entity ---
69
70
71 ent->Init(aName, aDef, aBase, aSubs);
72}
73
74
75void RWStepRepr_RWAssemblyComponentUsageSubstitute::WriteStep
76 (StepData_StepWriter& SW,
77 const Handle(StepRepr_AssemblyComponentUsageSubstitute)& ent) const
78{
79
80 SW.Send(ent->Name());
81 SW.Send(ent->Definition());
82 SW.Send(ent->Base());
83 SW.Send(ent->Substitute());
84}
85
86
87void RWStepRepr_RWAssemblyComponentUsageSubstitute::Share(const Handle(StepRepr_AssemblyComponentUsageSubstitute)& ent, Interface_EntityIterator& iter) const
88{
89
90 iter.GetOneItem(ent->Base());
91
92 iter.GetOneItem(ent->Substitute());
93}
94