summaryrefslogtreecommitdiff
path: root/src/RWStepVisual/RWStepVisual_RWSurfaceStyleSegmentationCurve.cxx
blob: fcf9db46655fbede7b275e4a4f430f6853595814 (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_RWSurfaceStyleSegmentationCurve.ixx>
#include <StepVisual_CurveStyle.hxx>


#include <Interface_EntityIterator.hxx>


#include <StepVisual_SurfaceStyleSegmentationCurve.hxx>


RWStepVisual_RWSurfaceStyleSegmentationCurve::RWStepVisual_RWSurfaceStyleSegmentationCurve () {}

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


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

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

	// --- own field : styleOfSegmentationCurve ---

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

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


	ent->Init(aStyleOfSegmentationCurve);
}


void RWStepVisual_RWSurfaceStyleSegmentationCurve::WriteStep
	(StepData_StepWriter& SW,
	 const Handle(StepVisual_SurfaceStyleSegmentationCurve)& ent) const
{

	// --- own field : styleOfSegmentationCurve ---

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


void RWStepVisual_RWSurfaceStyleSegmentationCurve::Share(const Handle(StepVisual_SurfaceStyleSegmentationCurve)& ent, Interface_EntityIterator& iter) const
{

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