0027232: Configuration - fix mblen missing building issue on Android
[occt.git] / src / RWStepShape / RWStepShape_RWOrientedEdge.cxx
CommitLineData
973c2be1 1// Copyright (c) 1999-2014 OPEN CASCADE SAS
b311480e 2//
973c2be1 3// This file is part of Open CASCADE Technology software library.
b311480e 4//
d5f74e42 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
973c2be1 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.
b311480e 10//
973c2be1 11// Alternatively, this file may be used under the terms of Open CASCADE
12// commercial license or contractual agreement.
7fd59977 13
7fd59977 14
42cf5bc1 15#include <Interface_Check.hxx>
7fd59977 16#include <Interface_EntityIterator.hxx>
42cf5bc1 17#include <RWStepShape_RWOrientedEdge.hxx>
18#include <StepData_StepReaderData.hxx>
19#include <StepData_StepWriter.hxx>
20#include <StepShape_Edge.hxx>
7fd59977 21#include <StepShape_OrientedEdge.hxx>
42cf5bc1 22#include <StepShape_Vertex.hxx>
7fd59977 23
24RWStepShape_RWOrientedEdge::RWStepShape_RWOrientedEdge () {}
25
26void RWStepShape_RWOrientedEdge::ReadStep
27 (const Handle(StepData_StepReaderData)& data,
28 const Standard_Integer num,
29 Handle(Interface_Check)& ach,
30 const Handle(StepShape_OrientedEdge)& ent) const
31{
32
33
34 // --- Number of Parameter Control ---
35
36 if (!data->CheckNbParams(num,5,ach,"oriented_edge")) return;
37
38 // --- inherited field : name ---
39
40 Handle(TCollection_HAsciiString) aName;
41 //szv#4:S4163:12Mar99 `Standard_Boolean stat1 =` not needed
42 data->ReadString (num,1,"name",ach,aName);
43
44 // --- inherited field : edgeStart ---
45 // --- this field is redefined ---
46 //szv#4:S4163:12Mar99 `Standard_Boolean stat2 =` not needed
47 data->CheckDerived(num,2,"edge_start",ach,Standard_False);
48
49 // --- inherited field : edgeEnd ---
50 // --- this field is redefined ---
51 //szv#4:S4163:12Mar99 `Standard_Boolean stat3 =` not needed
52 data->CheckDerived(num,3,"edge_end",ach,Standard_False);
53
54 // --- own field : edgeElement ---
55
56 Handle(StepShape_Edge) aEdgeElement;
57 //szv#4:S4163:12Mar99 `Standard_Boolean stat4 =` not needed
58 data->ReadEntity(num, 4,"edge_element", ach, STANDARD_TYPE(StepShape_Edge), aEdgeElement);
59
60 // --- own field : orientation ---
61
62 Standard_Boolean aOrientation;
63 //szv#4:S4163:12Mar99 `Standard_Boolean stat5 =` not needed
64 data->ReadBoolean (num,5,"orientation",ach,aOrientation);
65
66 //--- Initialisation of the read entity ---
67
68
69 ent->Init(aName, aEdgeElement, aOrientation);
70}
71
72
73void RWStepShape_RWOrientedEdge::WriteStep
74 (StepData_StepWriter& SW,
75 const Handle(StepShape_OrientedEdge)& ent) const
76{
77
78 // --- inherited field name ---
79
80 SW.Send(ent->Name());
81
82 // --- inherited field edgeStart ---
83
84 SW.SendDerived();
85
86 // --- inherited field edgeEnd ---
87
88 SW.SendDerived();
89
90 // --- own field : edgeElement ---
91
92 SW.Send(ent->EdgeElement());
93
94 // --- own field : orientation ---
95
96 SW.SendBoolean(ent->Orientation());
97}
98
99
100void RWStepShape_RWOrientedEdge::Share(const Handle(StepShape_OrientedEdge)& ent, Interface_EntityIterator& iter) const
101{
102
103 iter.GetOneItem(ent->EdgeElement());
104}
105