0028250: Data Exchange - Wrong number of geometric tolerance modifiers.
[occt.git] / src / RWStepDimTol / RWStepDimTol_RWRunoutZoneOrientation.cxx
1 // Created on: 2015-07-13
2 // Created by: Irina KRYLOVA
3 // Copyright (c) 2015 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 #include <RWStepDimTol_RWRunoutZoneOrientation.hxx>
17
18 #include <StepBasic_PlaneAngleMeasureWithUnit.hxx>
19 #include <StepData_StepReaderData.hxx>
20 #include <StepData_StepWriter.hxx>
21 #include <StepDimTol_RunoutZoneOrientation.hxx>
22
23 //=======================================================================
24 //function : RWStepDimTol_RWRunoutZoneOrientation
25 //purpose  : 
26 //=======================================================================
27
28 RWStepDimTol_RWRunoutZoneOrientation::RWStepDimTol_RWRunoutZoneOrientation ()
29 {
30 }
31
32 //=======================================================================
33 //function : ReadStep
34 //purpose  : 
35 //=======================================================================
36
37 void RWStepDimTol_RWRunoutZoneOrientation::ReadStep (const Handle(StepData_StepReaderData)& data,
38                                                      const Standard_Integer num,
39                                                      Handle(Interface_Check)& ach,
40                                                      const Handle(StepDimTol_RunoutZoneOrientation) &ent) const
41 {
42   // Check number of parameters
43   if ( ! data->CheckNbParams(num,1,ach,"runout_zone_orientation") ) return;
44
45   // Own fields of RunoutZoneOrientation
46
47   Handle(StepBasic_PlaneAngleMeasureWithUnit) anAngle;
48   data->ReadEntity (num, 1, "angle", ach, STANDARD_TYPE(StepBasic_PlaneAngleMeasureWithUnit), anAngle);
49
50   // Initialize entity
51   ent->Init(anAngle);
52 }
53
54 //=======================================================================
55 //function : WriteStep
56 //purpose  : 
57 //=======================================================================
58
59 void RWStepDimTol_RWRunoutZoneOrientation::WriteStep (StepData_StepWriter& SW,
60                                                       const Handle(StepDimTol_RunoutZoneOrientation) &ent) const
61 {
62   SW.Send (ent->Angle());
63 }