0031642: Visualization - crash in Graphic3d_Structure::SetVisual() on redisplaying...
[occt.git] / src / RWStepRepr / RWStepRepr_RWConfigurationDesign.cxx
1 // Created on: 1999-11-26
2 // Created by: Andrey BETENEV
3 // Copyright (c) 1999 Matra Datavision
4 // Copyright (c) 1999-2014 OPEN CASCADE SAS
5 //
6 // This file is part of Open CASCADE Technology software library.
7 //
8 // This library is free software; you can redistribute it and/or modify it under
9 // the terms of the GNU Lesser General Public License version 2.1 as published
10 // by the Free Software Foundation, with special exception defined in the file
11 // OCCT_LGPL_EXCEPTION.txt. Consult the file LICENSE_LGPL_21.txt included in OCCT
12 // distribution for complete text of the license and disclaimer of any warranty.
13 //
14 // Alternatively, this file may be used under the terms of Open CASCADE
15 // commercial license or contractual agreement.
16
17 // Generator:   ExpToCas (EXPRESS -> CASCADE/XSTEP Translator) V1.0
18
19 #include <Interface_Check.hxx>
20 #include <Interface_EntityIterator.hxx>
21 #include <RWStepRepr_RWConfigurationDesign.hxx>
22 #include <StepData_StepReaderData.hxx>
23 #include <StepData_StepWriter.hxx>
24 #include <StepRepr_ConfigurationDesign.hxx>
25 #include <StepRepr_ConfigurationItem.hxx>
26
27 //=======================================================================
28 //function : RWStepRepr_RWConfigurationDesign
29 //purpose  : 
30 //=======================================================================
31 RWStepRepr_RWConfigurationDesign::RWStepRepr_RWConfigurationDesign ()
32 {
33 }
34
35 //=======================================================================
36 //function : ReadStep
37 //purpose  : 
38 //=======================================================================
39
40 void RWStepRepr_RWConfigurationDesign::ReadStep (const Handle(StepData_StepReaderData)& data,
41                                                  const Standard_Integer num,
42                                                  Handle(Interface_Check)& ach,
43                                                  const Handle(StepRepr_ConfigurationDesign) &ent) const
44 {
45   // Check number of parameters
46   if ( ! data->CheckNbParams(num,2,ach,"configuration_design") ) return;
47
48   // Own fields of ConfigurationDesign
49
50   Handle(StepRepr_ConfigurationItem) aConfiguration;
51   data->ReadEntity (num, 1, "configuration", ach, STANDARD_TYPE(StepRepr_ConfigurationItem), aConfiguration);
52
53   StepRepr_ConfigurationDesignItem aDesign;
54   data->ReadEntity (num, 2, "design", ach, aDesign);
55
56   // Initialize entity
57   ent->Init(aConfiguration,
58             aDesign);
59 }
60
61 //=======================================================================
62 //function : WriteStep
63 //purpose  : 
64 //=======================================================================
65
66 void RWStepRepr_RWConfigurationDesign::WriteStep (StepData_StepWriter& SW,
67                                                   const Handle(StepRepr_ConfigurationDesign) &ent) const
68 {
69
70   // Own fields of ConfigurationDesign
71
72   SW.Send (ent->Configuration());
73
74   SW.Send (ent->Design().Value());
75 }
76
77 //=======================================================================
78 //function : Share
79 //purpose  : 
80 //=======================================================================
81
82 void RWStepRepr_RWConfigurationDesign::Share (const Handle(StepRepr_ConfigurationDesign) &ent,
83                                               Interface_EntityIterator& iter) const
84 {
85
86   // Own fields of ConfigurationDesign
87
88   iter.AddItem (ent->Configuration());
89
90   iter.AddItem (ent->Design().Value());
91 }