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