0023258: Missing parenthesis
[occt.git] / src / RWStepVisual / RWStepVisual_RWAreaInSet.cxx
CommitLineData
b311480e 1// Copyright (c) 1999-2012 OPEN CASCADE SAS
2//
3// The content of this file is subject to the Open CASCADE Technology Public
4// License Version 6.5 (the "License"). You may not use the content of this file
5// except in compliance with the License. Please obtain a copy of the License
6// at http://www.opencascade.org and read it completely before using this file.
7//
8// The Initial Developer of the Original Code is Open CASCADE S.A.S., having its
9// main offices at: 1, place des Freres Montgolfier, 78280 Guyancourt, France.
10//
11// The Original Code and all software distributed under the License is
12// distributed on an "AS IS" basis, without warranty of any kind, and the
13// Initial Developer hereby disclaims all such warranties, including without
14// limitation, any warranties of merchantability, fitness for a particular
15// purpose or non-infringement. Please see the License for the specific terms
16// and conditions governing the rights and limitations under the License.
17
7fd59977 18
19#include <RWStepVisual_RWAreaInSet.ixx>
20#include <StepVisual_PresentationArea.hxx>
21#include <StepVisual_PresentationSet.hxx>
22
23
24#include <Interface_EntityIterator.hxx>
25
26
27#include <StepVisual_AreaInSet.hxx>
28
29
30RWStepVisual_RWAreaInSet::RWStepVisual_RWAreaInSet () {}
31
32void RWStepVisual_RWAreaInSet::ReadStep
33 (const Handle(StepData_StepReaderData)& data,
34 const Standard_Integer num,
35 Handle(Interface_Check)& ach,
36 const Handle(StepVisual_AreaInSet)& ent) const
37{
38
39
40 // --- Number of Parameter Control ---
41
42 if (!data->CheckNbParams(num,2,ach,"area_in_set")) return;
43
44 // --- own field : area ---
45
46 Handle(StepVisual_PresentationArea) aArea;
47 //szv#4:S4163:12Mar99 `Standard_Boolean stat1 =` not needed
48 data->ReadEntity(num, 1,"area", ach, STANDARD_TYPE(StepVisual_PresentationArea), aArea);
49
50 // --- own field : inSet ---
51
52 Handle(StepVisual_PresentationSet) aInSet;
53 //szv#4:S4163:12Mar99 `Standard_Boolean stat2 =` not needed
54 data->ReadEntity(num, 2,"in_set", ach, STANDARD_TYPE(StepVisual_PresentationSet), aInSet);
55
56 //--- Initialisation of the read entity ---
57
58
59 ent->Init(aArea, aInSet);
60}
61
62
63void RWStepVisual_RWAreaInSet::WriteStep
64 (StepData_StepWriter& SW,
65 const Handle(StepVisual_AreaInSet)& ent) const
66{
67
68 // --- own field : area ---
69
70 SW.Send(ent->Area());
71
72 // --- own field : inSet ---
73
74 SW.Send(ent->InSet());
75}
76
77
78void RWStepVisual_RWAreaInSet::Share(const Handle(StepVisual_AreaInSet)& ent, Interface_EntityIterator& iter) const
79{
80
81 iter.GetOneItem(ent->Area());
82
83
84 iter.GetOneItem(ent->InSet());
85}
86