0033018: Coding - get rid of unused headers [Plugin to ShapeAnalysis]
[occt.git] / src / RWStepElement / RWStepElement_RWSurfaceSectionFieldVarying.cxx
1 // Created on: 2002-12-12
2 // Created by: data exchange team
3 // Copyright (c) 2002-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.2
17
18 #include <Interface_Check.hxx>
19 #include <Interface_EntityIterator.hxx>
20 #include <RWStepElement_RWSurfaceSectionFieldVarying.hxx>
21 #include <StepData_StepReaderData.hxx>
22 #include <StepData_StepWriter.hxx>
23 #include <StepElement_SurfaceSection.hxx>
24 #include <StepElement_SurfaceSectionFieldVarying.hxx>
25
26 //=======================================================================
27 //function : RWStepElement_RWSurfaceSectionFieldVarying
28 //purpose  : 
29 //=======================================================================
30 RWStepElement_RWSurfaceSectionFieldVarying::RWStepElement_RWSurfaceSectionFieldVarying ()
31 {
32 }
33
34 //=======================================================================
35 //function : ReadStep
36 //purpose  : 
37 //=======================================================================
38
39 void RWStepElement_RWSurfaceSectionFieldVarying::ReadStep (const Handle(StepData_StepReaderData)& data,
40                                                            const Standard_Integer num,
41                                                            Handle(Interface_Check)& ach,
42                                                            const Handle(StepElement_SurfaceSectionFieldVarying) &ent) const
43 {
44   // Check number of parameters
45   if ( ! data->CheckNbParams(num,2,ach,"surface_section_field_varying") ) return;
46
47   // Own fields of SurfaceSectionFieldVarying
48
49   Handle(StepElement_HArray1OfSurfaceSection) aDefinitions;
50   Standard_Integer sub1 = 0;
51   if ( data->ReadSubList (num, 1, "definitions", ach, sub1) ) {
52     Standard_Integer nb0 = data->NbParams(sub1);
53     aDefinitions = new StepElement_HArray1OfSurfaceSection (1, nb0);
54     Standard_Integer num2 = sub1;
55     for ( Standard_Integer i0=1; i0 <= nb0; i0++ ) {
56       Handle(StepElement_SurfaceSection) anIt0;
57       data->ReadEntity (num2, i0, "surface_section", ach, STANDARD_TYPE(StepElement_SurfaceSection), anIt0);
58       aDefinitions->SetValue(i0, anIt0);
59     }
60   }
61
62   Standard_Boolean aAdditionalNodeValues;
63   data->ReadBoolean (num, 2, "additional_node_values", ach, aAdditionalNodeValues);
64
65   // Initialize entity
66   ent->Init(aDefinitions,
67             aAdditionalNodeValues);
68 }
69
70 //=======================================================================
71 //function : WriteStep
72 //purpose  : 
73 //=======================================================================
74
75 void RWStepElement_RWSurfaceSectionFieldVarying::WriteStep (StepData_StepWriter& SW,
76                                                             const Handle(StepElement_SurfaceSectionFieldVarying) &ent) const
77 {
78
79   // Own fields of SurfaceSectionFieldVarying
80
81   SW.OpenSub();
82   for (Standard_Integer i0=1; i0 <= ent->Definitions()->Length(); i0++ ) {
83     Handle(StepElement_SurfaceSection) Var0 = ent->Definitions()->Value(i0);
84     SW.Send (Var0);
85   }
86   SW.CloseSub();
87
88   SW.SendBoolean (ent->AdditionalNodeValues());
89 }
90
91 //=======================================================================
92 //function : Share
93 //purpose  : 
94 //=======================================================================
95
96 void RWStepElement_RWSurfaceSectionFieldVarying::Share (const Handle(StepElement_SurfaceSectionFieldVarying) &ent,
97                                                         Interface_EntityIterator& iter) const
98 {
99
100   // Own fields of SurfaceSectionFieldVarying
101
102   for (Standard_Integer i1=1; i1 <= ent->Definitions()->Length(); i1++ ) {
103     Handle(StepElement_SurfaceSection) Var0 = ent->Definitions()->Value(i1);
104     iter.AddItem (Var0);
105   }
106 }