0023024: Update headers of OCCT files
[occt.git] / src / RWStepVisual / RWStepVisual_RWPresentationSize.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_RWPresentationSize.ixx>
20#include <StepVisual_PresentationSizeAssignmentSelect.hxx>
21#include <StepVisual_PlanarBox.hxx>
22
23
24#include <Interface_EntityIterator.hxx>
25
26
27#include <StepVisual_PresentationSize.hxx>
28
29
30RWStepVisual_RWPresentationSize::RWStepVisual_RWPresentationSize () {}
31
32void RWStepVisual_RWPresentationSize::ReadStep
33 (const Handle(StepData_StepReaderData)& data,
34 const Standard_Integer num,
35 Handle(Interface_Check)& ach,
36 const Handle(StepVisual_PresentationSize)& ent) const
37{
38
39
40 // --- Number of Parameter Control ---
41
42 if (!data->CheckNbParams(num,2,ach,"presentation_size")) return;
43
44 // --- own field : unit ---
45
46 StepVisual_PresentationSizeAssignmentSelect aUnit;
47 //szv#4:S4163:12Mar99 `Standard_Boolean stat1 =` not needed
48 data->ReadEntity(num,1,"unit",ach,aUnit);
49
50 // --- own field : size ---
51
52 Handle(StepVisual_PlanarBox) aSize;
53 //szv#4:S4163:12Mar99 `Standard_Boolean stat2 =` not needed
54 data->ReadEntity(num, 2,"size", ach, STANDARD_TYPE(StepVisual_PlanarBox), aSize);
55
56 //--- Initialisation of the read entity ---
57
58
59 ent->Init(aUnit, aSize);
60}
61
62
63void RWStepVisual_RWPresentationSize::WriteStep
64 (StepData_StepWriter& SW,
65 const Handle(StepVisual_PresentationSize)& ent) const
66{
67
68 // --- own field : unit ---
69
70 SW.Send(ent->Unit().Value());
71
72 // --- own field : size ---
73
74 SW.Send(ent->Size());
75}
76
77
78void RWStepVisual_RWPresentationSize::Share(const Handle(StepVisual_PresentationSize)& ent, Interface_EntityIterator& iter) const
79{
80
81 iter.GetOneItem(ent->Unit().Value());
82
83
84 iter.GetOneItem(ent->Size());
85}
86