4802a3f9d23baa6bb6f7c3945b8b829dd12f7064
[occt.git] / src / StepBasic / StepBasic_WeekOfYearAndDayDate.cxx
1 // Copyright (c) 1999-2014 OPEN CASCADE SAS
2 //
3 // This file is part of Open CASCADE Technology software library.
4 //
5 // This library is free software; you can redistribute it and/or modify it under
6 // the terms of the GNU Lesser General Public License version 2.1 as published
7 // by the Free Software Foundation, with special exception defined in the file
8 // OCCT_LGPL_EXCEPTION.txt. Consult the file LICENSE_LGPL_21.txt included in OCCT
9 // distribution for complete text of the license and disclaimer of any warranty.
10 //
11 // Alternatively, this file may be used under the terms of Open CASCADE
12 // commercial license or contractual agreement.
13
14
15 #include <Standard_Type.hxx>
16 #include <StepBasic_WeekOfYearAndDayDate.hxx>
17
18 IMPLEMENT_STANDARD_RTTIEXT(StepBasic_WeekOfYearAndDayDate,StepBasic_Date)
19
20 StepBasic_WeekOfYearAndDayDate::StepBasic_WeekOfYearAndDayDate ()  {}
21
22 void StepBasic_WeekOfYearAndDayDate::Init(
23         const Standard_Integer aYearComponent)
24 {
25
26         StepBasic_Date::Init(aYearComponent);
27 }
28
29 void StepBasic_WeekOfYearAndDayDate::Init(
30         const Standard_Integer aYearComponent,
31         const Standard_Integer aWeekComponent,
32         const Standard_Boolean hasAdayComponent,
33         const Standard_Integer aDayComponent)
34 {
35         // --- classe own fields ---
36         weekComponent = aWeekComponent;
37         hasDayComponent = hasAdayComponent;
38         dayComponent = aDayComponent;
39         // --- classe inherited fields ---
40         StepBasic_Date::Init(aYearComponent);
41 }
42
43
44 void StepBasic_WeekOfYearAndDayDate::SetWeekComponent(const Standard_Integer aWeekComponent)
45 {
46         weekComponent = aWeekComponent;
47 }
48
49 Standard_Integer StepBasic_WeekOfYearAndDayDate::WeekComponent() const
50 {
51         return weekComponent;
52 }
53
54 void StepBasic_WeekOfYearAndDayDate::SetDayComponent(const Standard_Integer aDayComponent)
55 {
56         dayComponent = aDayComponent;
57         hasDayComponent = Standard_True;
58 }
59
60 void StepBasic_WeekOfYearAndDayDate::UnSetDayComponent()
61 {
62         hasDayComponent = Standard_False;
63 }
64
65 Standard_Integer StepBasic_WeekOfYearAndDayDate::DayComponent() const
66 {
67         return dayComponent;
68 }
69
70 Standard_Boolean StepBasic_WeekOfYearAndDayDate::HasDayComponent() const
71 {
72         return hasDayComponent;
73 }