0031642: Visualization - crash in Graphic3d_Structure::SetVisual() on redisplaying...
[occt.git] / src / RWStepAP214 / RWStepAP214_RWRepItemGroup.cxx
1 // Created on: 2000-05-10
2 // Created by: Andrey BETENEV
3 // Copyright (c) 2000-2014 OPEN CASCADE SAS
4 //
5 // This file is part of Open CASCADE Technology software library.
6 //
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
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.
12 //
13 // Alternatively, this file may be used under the terms of Open CASCADE
14 // commercial license or contractual agreement.
15
16 // Generator:   ExpToCas (EXPRESS -> CASCADE/XSTEP Translator) V1.1
17
18 #include <Interface_Check.hxx>
19 #include <Interface_EntityIterator.hxx>
20 #include <RWStepAP214_RWRepItemGroup.hxx>
21 #include <StepAP214_RepItemGroup.hxx>
22 #include <StepData_StepReaderData.hxx>
23 #include <StepData_StepWriter.hxx>
24 #include <StepRepr_RepresentationItem.hxx>
25
26 //=======================================================================
27 //function : RWStepAP214_RWRepItemGroup
28 //purpose  : 
29 //=======================================================================
30 RWStepAP214_RWRepItemGroup::RWStepAP214_RWRepItemGroup ()
31 {
32 }
33
34 //=======================================================================
35 //function : ReadStep
36 //purpose  : 
37 //=======================================================================
38
39 void RWStepAP214_RWRepItemGroup::ReadStep (const Handle(StepData_StepReaderData)& data,
40                                            const Standard_Integer num,
41                                            Handle(Interface_Check)& ach,
42                                            const Handle(StepAP214_RepItemGroup) &ent) const
43 {
44   // Check number of parameters
45   if ( ! data->CheckNbParams(num,3,ach,"rep_item_group") ) return;
46
47   // Inherited fields of Group
48
49   Handle(TCollection_HAsciiString) aGroup_Name;
50   data->ReadString (num, 1, "group.name", ach, aGroup_Name);
51
52   Handle(TCollection_HAsciiString) aGroup_Description;
53   Standard_Boolean hasGroup_Description = Standard_True;
54   if ( data->IsParamDefined (num,2) ) {
55     data->ReadString (num, 2, "group.description", ach, aGroup_Description);
56   }
57   else {
58     hasGroup_Description = Standard_False;
59   }
60
61   // Inherited fields of RepresentationItem
62
63   Handle(TCollection_HAsciiString) aRepresentationItem_Name;
64   data->ReadString (num, 3, "representation_item.name", ach, aRepresentationItem_Name);
65
66   // Initialize entity
67   ent->Init(aGroup_Name,
68             hasGroup_Description,
69             aGroup_Description,
70             aRepresentationItem_Name);
71 }
72
73 //=======================================================================
74 //function : WriteStep
75 //purpose  : 
76 //=======================================================================
77
78 void RWStepAP214_RWRepItemGroup::WriteStep (StepData_StepWriter& SW,
79                                             const Handle(StepAP214_RepItemGroup) &ent) const
80 {
81
82   // Inherited fields of Group
83
84   SW.Send (ent->StepBasic_Group::Name());
85
86   if ( ent->StepBasic_Group::HasDescription() ) {
87     SW.Send (ent->StepBasic_Group::Description());
88   }
89   else SW.SendUndef();
90
91   // Inherited fields of RepresentationItem
92
93   SW.Send (ent->RepresentationItem()->Name());
94 }
95
96 //=======================================================================
97 //function : Share
98 //purpose  : 
99 //=======================================================================
100
101 void RWStepAP214_RWRepItemGroup::Share (const Handle(StepAP214_RepItemGroup)&,
102                                         Interface_EntityIterator&) const
103 {
104   // Inherited fields of Group
105   // Inherited fields of RepresentationItem
106 }