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
|
#include <iostream>
#include <iomanip>
#include <fstream>
using namespace std;
#include "searching.h"
...........
...........
...........
//Processes the users command and decides what to do with it
void processCommand(const int com, task tasks[], int& num) {
int taskNum;
int searchCom;
int searchedTasks[100] = {0};
int searchCount;
switch(com) {
case 1:
listTasks(tasks, num);
break;
case 2:
inputTask(tasks, num);
break;
case 3:
if(num > 0) {
cout << "What is the number of the task you want to delete?: ";
cin >> taskNum;
if((taskNum <= num) && (taskNum > 0)) {
deleteTask(tasks, taskNum, num);
}else {
cout << "Number " << taskNum << " not valid.\n";
}
}else {
cout << "There are no tasks to delete!!\n";
}
break;
case 4:
searching search;
searchCom = search.menu();
switch(searchCom) {
case 1:
searchCount = search.searchClass(tasks, num, searchedTasks);
break;
case 2:
searchCount = search.searchAssign(tasks, num, searchedTasks);
break;
}
if(searchCount == 0) {
cout << "No results to display!\n";
pause();
}else {
search.displaySearch(tasks, searchedTasks, searchCount);
pause();
}
case 5:
cout << "Bye Bye!\n";
break;
}
}
|