summaryrefslogtreecommitdiff
path: root/src/RWStepBasic/RWStepBasic_RWWeekOfYearAndDayDate.cxx
blob: 296df0a7c36e79d64d8b9d38770737f5a6105646 (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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73

#include <RWStepBasic_RWWeekOfYearAndDayDate.ixx>


RWStepBasic_RWWeekOfYearAndDayDate::RWStepBasic_RWWeekOfYearAndDayDate () {}

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


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

	if (!data->CheckNbParams(num,3,ach,"week_of_year_and_day_date")) return;

	// --- inherited field : yearComponent ---

	Standard_Integer aYearComponent;
	//szv#4:S4163:12Mar99 `Standard_Boolean stat1 =` not needed
	data->ReadInteger (num,1,"year_component",ach,aYearComponent);

	// --- own field : weekComponent ---

	Standard_Integer aWeekComponent;
	//szv#4:S4163:12Mar99 `Standard_Boolean stat2 =` not needed
	data->ReadInteger (num,2,"week_component",ach,aWeekComponent);

	// --- own field : dayComponent ---

	Standard_Integer aDayComponent;
	Standard_Boolean hasAdayComponent = Standard_True;
	if (data->IsParamDefined(num,3)) {
	  //szv#4:S4163:12Mar99 `Standard_Boolean stat3 =` not needed
	  data->ReadInteger (num,3,"day_component",ach,aDayComponent);
	}
	else {
	  hasAdayComponent = Standard_False;
	  aDayComponent = 0;
	}

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


	ent->Init(aYearComponent, aWeekComponent, hasAdayComponent, aDayComponent);
}


void RWStepBasic_RWWeekOfYearAndDayDate::WriteStep
	(StepData_StepWriter& SW,
	 const Handle(StepBasic_WeekOfYearAndDayDate)& ent) const
{

	// --- inherited field yearComponent ---

	SW.Send(ent->YearComponent());

	// --- own field : weekComponent ---

	SW.Send(ent->WeekComponent());

	// --- own field : dayComponent ---

	Standard_Boolean hasAdayComponent = ent->HasDayComponent();
	if (hasAdayComponent) {
	  SW.Send(ent->DayComponent());
	}
	else {
	  SW.SendUndef();
	}
}