0033018: Coding - get rid of unused headers [Plugin to ShapeAnalysis]
[occt.git] / src / RWStepShape / RWStepShape_RWVertexPoint.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_EntityIterator.hxx>
16 #include <RWStepShape_RWVertexPoint.hxx>
17 #include <StepData_StepReaderData.hxx>
18 #include <StepData_StepWriter.hxx>
19 #include <StepGeom_Point.hxx>
20 #include <StepShape_VertexPoint.hxx>
21
22 RWStepShape_RWVertexPoint::RWStepShape_RWVertexPoint () {}
23
24 void RWStepShape_RWVertexPoint::ReadStep
25         (const Handle(StepData_StepReaderData)& data,
26          const Standard_Integer num,
27          Handle(Interface_Check)& ach,
28          const Handle(StepShape_VertexPoint)& ent) const
29 {
30
31
32         // --- Number of Parameter Control ---
33
34         if (!data->CheckNbParams(num,2,ach,"vertex_point")) return;
35
36         // --- inherited field : name ---
37
38         Handle(TCollection_HAsciiString) aName;
39         //szv#4:S4163:12Mar99 `Standard_Boolean stat1 =` not needed
40         data->ReadString (num,1,"name",ach,aName);
41
42         // --- own field : vertexGeometry ---
43
44         Handle(StepGeom_Point) aVertexGeometry;
45         //szv#4:S4163:12Mar99 `Standard_Boolean stat2 =` not needed
46         data->ReadEntity(num, 2,"vertex_geometry", ach, STANDARD_TYPE(StepGeom_Point), aVertexGeometry);
47
48         //--- Initialisation of the read entity ---
49
50
51         ent->Init(aName, aVertexGeometry);
52 }
53
54
55 void RWStepShape_RWVertexPoint::WriteStep
56         (StepData_StepWriter& SW,
57          const Handle(StepShape_VertexPoint)& ent) const
58 {
59
60         // --- inherited field name ---
61
62         SW.Send(ent->Name());
63
64         // --- own field : vertexGeometry ---
65
66         SW.Send(ent->VertexGeometry());
67 }
68
69
70 void RWStepShape_RWVertexPoint::Share(const Handle(StepShape_VertexPoint)& ent, Interface_EntityIterator& iter) const
71 {
72
73         iter.GetOneItem(ent->VertexGeometry());
74 }
75