0022048: Visualization, AIS_InteractiveContext - single object selection should alway...
[occt.git] / src / RWStepFEA / RWStepFEA_RWFeaSurfaceSectionGeometricRelationship.cxx
1 // Created on: 2003-01-22
2 // Created by: data exchange team
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 <Interface_Check.hxx>
19 #include <Interface_EntityIterator.hxx>
20 #include <RWStepFEA_RWFeaSurfaceSectionGeometricRelationship.hxx>
21 #include <StepData_StepReaderData.hxx>
22 #include <StepData_StepWriter.hxx>
23 #include <StepElement_AnalysisItemWithinRepresentation.hxx>
24 #include <StepElement_SurfaceSection.hxx>
25 #include <StepFEA_FeaSurfaceSectionGeometricRelationship.hxx>
26
27 //=======================================================================
28 //function : RWStepFEA_RWFeaSurfaceSectionGeometricRelationship
29 //purpose  : 
30 //=======================================================================
31 RWStepFEA_RWFeaSurfaceSectionGeometricRelationship::RWStepFEA_RWFeaSurfaceSectionGeometricRelationship ()
32 {
33 }
34
35 //=======================================================================
36 //function : ReadStep
37 //purpose  : 
38 //=======================================================================
39
40 void RWStepFEA_RWFeaSurfaceSectionGeometricRelationship::ReadStep (const Handle(StepData_StepReaderData)& data,
41                                                                    const Standard_Integer num,
42                                                                    Handle(Interface_Check)& ach,
43                                                                    const Handle(StepFEA_FeaSurfaceSectionGeometricRelationship) &ent) const
44 {
45   // Check number of parameters
46   if ( ! data->CheckNbParams(num,2,ach,"fea_surface_section_geometric_relationship") ) return;
47
48   // Own fields of FeaSurfaceSectionGeometricRelationship
49
50   Handle(StepElement_SurfaceSection) aSectionRef;
51   data->ReadEntity (num, 1, "section_ref", ach, STANDARD_TYPE(StepElement_SurfaceSection), aSectionRef);
52
53   Handle(StepElement_AnalysisItemWithinRepresentation) aItem;
54   data->ReadEntity (num, 2, "item", ach, STANDARD_TYPE(StepElement_AnalysisItemWithinRepresentation), aItem);
55
56   // Initialize entity
57   ent->Init(aSectionRef,
58             aItem);
59 }
60
61 //=======================================================================
62 //function : WriteStep
63 //purpose  : 
64 //=======================================================================
65
66 void RWStepFEA_RWFeaSurfaceSectionGeometricRelationship::WriteStep (StepData_StepWriter& SW,
67                                                                     const Handle(StepFEA_FeaSurfaceSectionGeometricRelationship) &ent) const
68 {
69
70   // Own fields of FeaSurfaceSectionGeometricRelationship
71
72   SW.Send (ent->SectionRef());
73
74   SW.Send (ent->Item());
75 }
76
77 //=======================================================================
78 //function : Share
79 //purpose  : 
80 //=======================================================================
81
82 void RWStepFEA_RWFeaSurfaceSectionGeometricRelationship::Share (const Handle(StepFEA_FeaSurfaceSectionGeometricRelationship) &ent,
83                                                                 Interface_EntityIterator& iter) const
84 {
85
86   // Own fields of FeaSurfaceSectionGeometricRelationship
87
88   iter.AddItem (ent->SectionRef());
89
90   iter.AddItem (ent->Item());
91 }