#include "Mission.h" #include int Mission::getDuration() { return this->end - this->start; } void Mission::print() { std::cout << "[" << this->id << "] " << this->profession << " " << this->competence << " (" << this->day << ": " << this->start << " - " << this->end << ": " << this->getDuration() << ")\n"; }