-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtest.cpp
90 lines (82 loc) · 2 KB
/
test.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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
#include "scheduler.hpp"
#include <iostream>
#include <string>
#include <cstdlib>
#include <limits>
using namespace std;
int main()
{
Scheduler *sch = new Scheduler();
sch->readFile();
title();
while(true)
{
int opt;
menu();
cin>>opt;
switch(opt)
{
case 1:
{
string taskname;
int priority;
cout<<"task name: ";
cin>>taskname;
cout<<"priority: ";
cin>>priority;
sch->inputTask(taskname, priority);
}
break;
case 2:
drawTable(*sch);
break;
case 3:
sch->save();
break;
case 4:
{
string task;
cout<<"finished task: ";
cin>>task;
sch->finish(task);
break;
}
case 5:
{
string change, newname;
cout<<"task name: ";
cin>>change;
cout<<"new task name: ";
cin>>newname;
sch->changeTaskName(change, newname);
break;
}
case 6:
{
string task;
int pri;
cout<<"task name: ";
cin>>task;
cout<<"new priority: ";
cin>>pri;
sch->changePriority(task, pri);
break;
}
case 7:
{
string path;
cout<<"backup path: ";
cin>>path;
sch->backup(path);
break;
}
case 8:
exit(0);
default:
cerr<<"Invalid option"<<endl;
cin.clear();
cin.ignore(numeric_limits<std::streamsize>::max(), '\n');
}
cout<<endl;
}
}