0031668: Visualization - WebGL sample doesn't work on Emscripten 1.39
[occt.git] / src / RWStepBasic / RWStepBasic_RWPlaneAngleMeasureWithUnit.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
15 #include <Interface_Check.hxx>
16 #include <Interface_EntityIterator.hxx>
17 #include <RWStepBasic_RWPlaneAngleMeasureWithUnit.hxx>
18 #include <StepBasic_MeasureValueMember.hxx>
19 #include <StepBasic_NamedUnit.hxx>
20 #include <StepBasic_PlaneAngleMeasureWithUnit.hxx>
21 #include <StepData_StepReaderData.hxx>
22 #include <StepData_StepWriter.hxx>
23 #include <TCollection_AsciiString.hxx>
24
25 //=======================================================================
26 //function : RWStepBasic_RWPlaneAngleMeasureWithUnit
27 //purpose  : 
28 //=======================================================================
29 RWStepBasic_RWPlaneAngleMeasureWithUnit::RWStepBasic_RWPlaneAngleMeasureWithUnit () {}
30
31 //=======================================================================
32 //function : ReadStep
33 //purpose  : 
34 //=======================================================================
35
36 void RWStepBasic_RWPlaneAngleMeasureWithUnit::ReadStep (const Handle(StepData_StepReaderData)& data,
37                                                         const Standard_Integer num,
38                                                         Handle(Interface_Check)& ach,
39                                                         const Handle(StepBasic_PlaneAngleMeasureWithUnit)& ent) const
40 {
41   // --- Number of Parameter Control ---
42   if (!data->CheckNbParams(num,2,ach,"plane_angle_measure_with_unit")) return;
43   
44   // --- inherited field : valueComponent ---
45   // UPDATE 21-02-96 ,  31-MARS-1997 by CKY
46   Handle(StepBasic_MeasureValueMember) mvc = new StepBasic_MeasureValueMember;
47   data->ReadMember (num,1, "value_component", ach, mvc);
48
49   // --- inherited field : unitComponent ---
50   StepBasic_Unit aUnitComponent;
51   data->ReadEntity(num, 2,"unit_component", ach, aUnitComponent);
52   
53   //--- Initialisation of the read entity ---
54   ent->Init(mvc, aUnitComponent);
55 }
56
57 //=======================================================================
58 //function : WriteStep  
59 //purpose  : 
60 //=======================================================================
61
62 void RWStepBasic_RWPlaneAngleMeasureWithUnit::WriteStep (StepData_StepWriter& SW,
63                                                          const Handle(StepBasic_PlaneAngleMeasureWithUnit)& ent) const
64 {
65   // --- inherited field valueComponent ---
66   SW.Send(ent->ValueComponentMember());
67
68   // --- inherited field unitComponent ---
69   SW.Send(ent->UnitComponent().Value());
70 }
71
72 //=======================================================================
73 //function : Share
74 //purpose  : 
75 //=======================================================================
76
77 void RWStepBasic_RWPlaneAngleMeasureWithUnit::Share (const Handle(StepBasic_PlaneAngleMeasureWithUnit)& ent, 
78                                                      Interface_EntityIterator& iter) const
79 {
80   iter.GetOneItem(ent->UnitComponent().Value());
81 }
82