summaryrefslogtreecommitdiff
path: root/src/RWStepVisual/RWStepVisual_RWSurfaceStyleControlGrid.cxx
blob: bcf840e3808266643df051318ffd268703bc2a3c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55

#include <RWStepVisual_RWSurfaceStyleControlGrid.ixx>
#include <StepVisual_CurveStyle.hxx>


#include <Interface_EntityIterator.hxx>


#include <StepVisual_SurfaceStyleControlGrid.hxx>


RWStepVisual_RWSurfaceStyleControlGrid::RWStepVisual_RWSurfaceStyleControlGrid () {}

void RWStepVisual_RWSurfaceStyleControlGrid::ReadStep
	(const Handle(StepData_StepReaderData)& data,
	 const Standard_Integer num,
	 Handle(Interface_Check)& ach,
	 const Handle(StepVisual_SurfaceStyleControlGrid)& ent) const
{


	// --- Number of Parameter Control ---

	if (!data->CheckNbParams(num,1,ach,"surface_style_control_grid")) return;

	// --- own field : styleOfControlGrid ---

	Handle(StepVisual_CurveStyle) aStyleOfControlGrid;
	//szv#4:S4163:12Mar99 `Standard_Boolean stat1 =` not needed
	data->ReadEntity(num, 1,"style_of_control_grid", ach, STANDARD_TYPE(StepVisual_CurveStyle), aStyleOfControlGrid);

	//--- Initialisation of the read entity ---


	ent->Init(aStyleOfControlGrid);
}


void RWStepVisual_RWSurfaceStyleControlGrid::WriteStep
	(StepData_StepWriter& SW,
	 const Handle(StepVisual_SurfaceStyleControlGrid)& ent) const
{

	// --- own field : styleOfControlGrid ---

	SW.Send(ent->StyleOfControlGrid());
}


void RWStepVisual_RWSurfaceStyleControlGrid::Share(const Handle(StepVisual_SurfaceStyleControlGrid)& ent, Interface_EntityIterator& iter) const
{

	iter.GetOneItem(ent->StyleOfControlGrid());
}