blob: a300df0d3802ed0111d0d030b6db77165d9aa8c9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
// Copyright 2008 Nanorex, Inc. See LICENSE file for details.
#include "JobMonitor.h"
/* CONSTRUCTOR */
JobMonitor::JobMonitor(const QString& initString) : QThread() {
this->initString = initString;
}
/* DESTRUCTOR */
JobMonitor::~JobMonitor() {
}
|