This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <iostream> | |
#include <string> | |
#include <vector> | |
static int taskNumberCounter = 0; // Static variable to assign a taskNumber to task | |
enum Status {done, notDone}; | |
class Task { | |
private: |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <iostream> | |
#include <string> | |
#include <vector> | |
#include <ctime> | |
static int taskNumberCounter = 0; // Static variable to assign a taskNumber to task | |
enum Status {done, notDone}; | |
enum Priority {none, low, medium, high}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <iostream> | |
#include <string> | |
#include <vector> | |
#include <ctime> | |
static int taskNumberCounter = 0; // Static variable to assign a taskNumber to task | |
enum Status {done, notDone}; | |
enum Priority {none, low, medium, high}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <iostream> | |
#include <string> | |
#include <vector> | |
#include <ctime> | |
static int taskNumberCounter = 0; // Static variable to assign a taskNumber to task | |
enum Status {done, notDone}; | |
enum Priority {none, low, medium, high}; |