Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include <iostream>
- #include <fstream>
- #include <cstring>
- #include <vector>
- #include <algorithm>
- #include <thread>
- //#include <utility>
- #define daily "todo.daily"
- #define today "todo.today"
- #define monday "todo.monday"
- #define tuesday "todo.tuesday"
- #define wednesday "todo.wednesday"
- #define thursday "todo.thursday"
- #define friday "todo.friday"
- #define saturday "todo.saturday"
- #define sunday "todo.sunday"
- using namespace std;
- ofstream fout;
- ifstream fin;
- struct item {
- string title;
- short level = 1;
- string depends = "none";
- string description;
- short urgency = 10;
- short importance = 10;
- double nice () {
- return 1.5 * urgency + importance;
- }
- unsigned int number;
- };
- #include "functions/number.cpp" // Yes, I know that I shouldn't have included .cpp files like this. Will fix this later
- #include "functions/get.cpp"
- #include "functions/invoke.cpp"
- #include "functions/make.cpp"
Advertisement
Add Comment
Please, Sign In to add comment