// // tasklist.h: TaskList interface // #ifndef _tasklist_h #define _tasklist_h #include "task.h" // necessary? class TaskList { private: static constexpr int MAX_TASKS = 50; Task *todo[MAX_TASKS]; long count; public: TaskList(); void add(Task *new_task); bool full(); double totalHours(); }; #endif