0031642: Visualization - crash in Graphic3d_Structure::SetVisual() on redisplaying...
[occt.git] / src / RWStepBasic / RWStepBasic_RWApprovalRelationship.cxx
1 // Copyright (c) 1999-2014 OPEN CASCADE SAS
2 //
3 // This file is part of Open CASCADE Technology software library.
4 //
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
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.
10 //
11 // Alternatively, this file may be used under the terms of Open CASCADE
12 // commercial license or contractual agreement.
13
14 //gka 05.03.99 S4134 upgrade from CD to DIS
15
16 #include <Interface_Check.hxx>
17 #include <Interface_EntityIterator.hxx>
18 #include <RWStepBasic_RWApprovalRelationship.hxx>
19 #include <StepBasic_Approval.hxx>
20 #include <StepBasic_ApprovalRelationship.hxx>
21 #include <StepData_StepReaderData.hxx>
22 #include <StepData_StepWriter.hxx>
23
24 RWStepBasic_RWApprovalRelationship::RWStepBasic_RWApprovalRelationship () {}
25
26 void RWStepBasic_RWApprovalRelationship::ReadStep
27         (const Handle(StepData_StepReaderData)& data,
28          const Standard_Integer num,
29          Handle(Interface_Check)& ach,
30          const Handle(StepBasic_ApprovalRelationship)& ent) const
31 {
32
33
34         // --- Number of Parameter Control ---
35
36         if (!data->CheckNbParams(num,4,ach,"approval_relationship")) return;
37
38         // --- own field : name ---
39
40         Handle(TCollection_HAsciiString) aName;
41         //szv#4:S4163:12Mar99 `Standard_Boolean stat1 =` not needed
42         data->ReadString (num,1,"name",ach,aName);
43
44         // --- own field : description ---
45
46         Handle(TCollection_HAsciiString) aDescription;
47         if (data->IsParamDefined (num,2)) { //gka 05.03.99 S4134 upgrade from CD to DIS
48           //szv#4:S4163:12Mar99 `Standard_Boolean stat2 =` not needed
49           data->ReadString (num,2,"description",ach,aDescription);
50         }
51         // --- own field : relatingApproval ---
52
53         Handle(StepBasic_Approval) aRelatingApproval;
54         //szv#4:S4163:12Mar99 `Standard_Boolean stat3 =` not needed
55         data->ReadEntity(num, 3,"relating_approval", ach, STANDARD_TYPE(StepBasic_Approval), aRelatingApproval);
56
57         // --- own field : relatedApproval ---
58
59         Handle(StepBasic_Approval) aRelatedApproval;
60         //szv#4:S4163:12Mar99 `Standard_Boolean stat4 =` not needed
61         data->ReadEntity(num, 4,"related_approval", ach, STANDARD_TYPE(StepBasic_Approval), aRelatedApproval);
62
63         //--- Initialisation of the read entity ---
64
65
66         ent->Init(aName, aDescription, aRelatingApproval, aRelatedApproval);
67 }
68
69
70 void RWStepBasic_RWApprovalRelationship::WriteStep
71         (StepData_StepWriter& SW,
72          const Handle(StepBasic_ApprovalRelationship)& ent) const
73 {
74
75         // --- own field : name ---
76
77         SW.Send(ent->Name());
78
79         // --- own field : description ---
80
81         SW.Send(ent->Description());
82
83         // --- own field : relatingApproval ---
84
85         SW.Send(ent->RelatingApproval());
86
87         // --- own field : relatedApproval ---
88
89         SW.Send(ent->RelatedApproval());
90 }
91
92
93 void RWStepBasic_RWApprovalRelationship::Share(const Handle(StepBasic_ApprovalRelationship)& ent, Interface_EntityIterator& iter) const
94 {
95
96         iter.GetOneItem(ent->RelatingApproval());
97
98
99         iter.GetOneItem(ent->RelatedApproval());
100 }
101