13 lines
325 B
C++
13 lines
325 B
C++
|
#include "Mission.h"
|
||
|
#include <iostream>
|
||
|
|
||
|
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";
|
||
|
}
|