-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathTask.cpp
More file actions
118 lines (79 loc) · 1.44 KB
/
Task.cpp
File metadata and controls
118 lines (79 loc) · 1.44 KB
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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
#include "Task.h"
Task::Task()
{
}
Task :: Task(string n, string d, Date sD, Date eD, int p, int c) {
this->name = n;
this->description = d;
this->startDate = sD;
this->endDate = eD;
this->priority = p;
this->category = c;
}
Task::~Task()
{
}
void Task :: setName(string name)
{
this->name = name;
}
void Task :: setDescription(string description)
{
this->description = description;
}
void Task :: setStartDate(Date startDate)
{
this->startDate = startDate;
}
void Task :: setEndDate(Date endDate)
{
this->endDate = endDate;
}
void Task :: setPriority(int priority)
{
this->priority = priority;
}
void Task :: setCategory(int category)
{
this->category = category;
}
string Task :: getName() const
{
return this->name;
}
string Task :: getDescription() const
{
return this->description;
}
Date Task :: getStartDate() const
{
return this->startDate;
}
Date Task :: getEndDate() const
{
return this->endDate;
}
int Task :: getPriority() const
{
return this->priority;
}
int Task :: getCategory() const
{
return this->category;
}
void Task :: setData1(int data1)
{
this->data1 = data1;
}
void Task :: setData2(int data2)
{
this->data2 = data2;
}
int Task :: getData1()
{
return this->data1;
}
int Task :: getData2()
{
return this->data2;
}