0033018: Coding - get rid of unused headers [Plugin to ShapeAnalysis]
[occt.git] / src / RWStepShape / RWStepShape_RWShapeDefinitionRepresentation.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_EntityIterator.hxx>
20 #include <RWStepShape_RWShapeDefinitionRepresentation.hxx>
21 #include <StepData_StepReaderData.hxx>
22 #include <StepData_StepWriter.hxx>
23 #include <StepRepr_Representation.hxx>
24 #include <StepShape_ShapeDefinitionRepresentation.hxx>
25
26 //=======================================================================
27 //function : RWStepShape_RWShapeDefinitionRepresentation
28 //purpose  : 
29 //=======================================================================
30 RWStepShape_RWShapeDefinitionRepresentation::RWStepShape_RWShapeDefinitionRepresentation ()
31 {
32 }
33
34 //=======================================================================
35 //function : ReadStep
36 //purpose  : 
37 //=======================================================================
38
39 void RWStepShape_RWShapeDefinitionRepresentation::ReadStep (const Handle(StepData_StepReaderData)& data,
40                                                             const Standard_Integer num,
41                                                             Handle(Interface_Check)& ach,
42                                                             const Handle(StepShape_ShapeDefinitionRepresentation) &ent) const
43 {
44   // Check number of parameters
45   if ( ! data->CheckNbParams(num,2,ach,"shape_definition_representation") ) return;
46
47   // Inherited fields of PropertyDefinitionRepresentation
48
49   StepRepr_RepresentedDefinition aPropertyDefinitionRepresentation_Definition;
50   data->ReadEntity (num, 1, "property_definition_representation.definition", ach, aPropertyDefinitionRepresentation_Definition);
51
52   Handle(StepRepr_Representation) aPropertyDefinitionRepresentation_UsedRepresentation;
53   data->ReadEntity (num, 2, "property_definition_representation.used_representation", ach, STANDARD_TYPE(StepRepr_Representation), aPropertyDefinitionRepresentation_UsedRepresentation);
54
55   // Initialize entity
56   ent->Init(aPropertyDefinitionRepresentation_Definition,
57             aPropertyDefinitionRepresentation_UsedRepresentation);
58 }
59
60 //=======================================================================
61 //function : WriteStep
62 //purpose  : 
63 //=======================================================================
64
65 void RWStepShape_RWShapeDefinitionRepresentation::WriteStep (StepData_StepWriter& SW,
66                                                              const Handle(StepShape_ShapeDefinitionRepresentation) &ent) const
67 {
68
69   // Inherited fields of PropertyDefinitionRepresentation
70
71   SW.Send (ent->StepRepr_PropertyDefinitionRepresentation::Definition().Value());
72
73   SW.Send (ent->StepRepr_PropertyDefinitionRepresentation::UsedRepresentation());
74 }
75
76 //=======================================================================
77 //function : Share
78 //purpose  : 
79 //=======================================================================
80
81 void RWStepShape_RWShapeDefinitionRepresentation::Share (const Handle(StepShape_ShapeDefinitionRepresentation) &ent,
82                                                          Interface_EntityIterator& iter) const
83 {
84
85   // Inherited fields of PropertyDefinitionRepresentation
86
87   iter.AddItem (ent->StepRepr_PropertyDefinitionRepresentation::Definition().Value());
88
89   iter.AddItem (ent->StepRepr_PropertyDefinitionRepresentation::UsedRepresentation());
90 }