0024947: Redesign OCCT legacy type system -- automatic
[occt.git] / src / RWStepDimTol / RWStepDimTol_RWDatumFeature.cxx
1 // Created on: 2003-06-04
2 // Created by: Galina KULIKOVA
3 // Copyright (c) 2003-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 <RWStepDimTol_RWDatumFeature.ixx>
19 #include <StepRepr_ProductDefinitionShape.hxx>
20
21 //=======================================================================
22 //function : RWStepDimTol_RWDatumFeature
23 //purpose  : 
24 //=======================================================================
25
26 RWStepDimTol_RWDatumFeature::RWStepDimTol_RWDatumFeature ()
27 {
28 }
29
30 //=======================================================================
31 //function : ReadStep
32 //purpose  : 
33 //=======================================================================
34
35 void RWStepDimTol_RWDatumFeature::ReadStep (const Handle(StepData_StepReaderData)& data,
36                                             const Standard_Integer num,
37                                             Handle(Interface_Check)& ach,
38                                             const Handle(StepDimTol_DatumFeature) &ent) const
39 {
40   // Check number of parameters
41   if ( ! data->CheckNbParams(num,4,ach,"datum_feature") ) return;
42
43   // Inherited fields of ShapeAspect
44
45   Handle(TCollection_HAsciiString) aShapeAspect_Name;
46   data->ReadString (num, 1, "shape_aspect.name", ach, aShapeAspect_Name);
47
48   Handle(TCollection_HAsciiString) aShapeAspect_Description;
49   if ( data->IsParamDefined (num,2) ) {
50     data->ReadString (num, 2, "shape_aspect.description", ach, aShapeAspect_Description);
51   }
52
53   Handle(StepRepr_ProductDefinitionShape) aShapeAspect_OfShape;
54   data->ReadEntity (num, 3, "shape_aspect.of_shape", ach, STANDARD_TYPE(StepRepr_ProductDefinitionShape), aShapeAspect_OfShape);
55
56   StepData_Logical aShapeAspect_ProductDefinitional;
57   data->ReadLogical (num, 4, "shape_aspect.product_definitional", ach, aShapeAspect_ProductDefinitional);
58
59   // Initialize entity
60   ent->Init(aShapeAspect_Name,
61             aShapeAspect_Description,
62             aShapeAspect_OfShape,
63             aShapeAspect_ProductDefinitional);
64 }
65
66 //=======================================================================
67 //function : WriteStep
68 //purpose  : 
69 //=======================================================================
70
71 void RWStepDimTol_RWDatumFeature::WriteStep (StepData_StepWriter& SW,
72                                              const Handle(StepDimTol_DatumFeature) &ent) const
73 {
74
75   // Inherited fields of ShapeAspect
76
77   SW.Send (ent->StepRepr_ShapeAspect::Name());
78
79   SW.Send (ent->StepRepr_ShapeAspect::Description());
80
81   SW.Send (ent->StepRepr_ShapeAspect::OfShape());
82
83   SW.SendLogical (ent->StepRepr_ShapeAspect::ProductDefinitional());
84 }
85
86 //=======================================================================
87 //function : Share
88 //purpose  : 
89 //=======================================================================
90
91 void RWStepDimTol_RWDatumFeature::Share (const Handle(StepDimTol_DatumFeature) &ent,
92                                          Interface_EntityIterator& iter) const
93 {
94
95   // Inherited fields of ShapeAspect
96
97   iter.AddItem (ent->StepRepr_ShapeAspect::OfShape());
98 }