-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathToDo.cpp
66 lines (52 loc) · 1.23 KB
/
ToDo.cpp
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
#include <cstring>
#include <string.h>
#include <iostream>
#include "ToDo.h"
ToDo::ToDo(int prior, const Date& date, const std::string& tag, bool done)
: prior(prior), date(date), tag(tag), done(done){
}
ToDo::ToDo(const ToDo& todo)
: prior(todo.prior), date(todo.date), tag(todo.tag), done(todo.done){
}
ToDo::ToDo()
: prior(1), date(Date(1,1,2000)), tag(""), done(false){
}
ToDo::~ToDo(){
}
ToDo* ToDo::operator=(const ToDo& todo)
{
if(&todo){
this->tag = todo.tag;
this->prior = todo.prior;
this->date = todo.date;
this->done = todo.done;
}
return this;
}
void ToDo::setPriority(int nPriority){
this->prior = nPriority;
}
void ToDo::setDate(const Date& nDate){
this->date = nDate;
}
void ToDo::setTag(const std::string& nTag){
this->tag = nTag;
}
void ToDo::setDone(bool nDone){
this->done = nDone;
}
bool ToDo::getDone(){
return this->done;
}
int ToDo::getPriority(){
return this->prior;
}
Date& ToDo::getDate(){
return this->date;
}
const std::string& ToDo::getTag(){
return this->tag;
}
bool ToDo::operator==(const std::string& tag){
return this->tag==tag ? true : false;
}