-
Notifications
You must be signed in to change notification settings - Fork 32
/
Copy pathJob.cpp
27 lines (21 loc) · 1.02 KB
/
Job.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
#include <Job/Job.h>
namespace shapeworks {
//---------------------------------------------------------------------------
Job::Job() {}
//---------------------------------------------------------------------------
Job::~Job() {}
//---------------------------------------------------------------------------
QString Job::get_completion_message() {
QString duration = QString::number(timer_.elapsed() / 1000.0, 'f', 1);
return name() + " complete. Duration: " + duration + " seconds";
}
//---------------------------------------------------------------------------
QString Job::get_abort_message() {
QString duration = QString::number(timer_.elapsed() / 1000.0, 'f', 1);
return name() + " aborted. Duration: " + duration + " seconds";
}
//---------------------------------------------------------------------------
void Job::start_timer() { this->timer_.start(); }
//---------------------------------------------------------------------------
qint64 Job::timer_elapsed() { return this->timer_.elapsed(); }
} // namespace shapeworks