stec-platform
workerthread.h
1 #ifndef WORKERTHREAD_H
2 #define WORKERTHREAD_H
3 
4 #include <QThread>
5 #include <QStringList>
6 #include "platformu_global.h"
7 
8 
13 class PLATFORMUSHARED_EXPORT WorkerThread : public QThread
14 {
15  Q_OBJECT
16 public:
17  explicit WorkerThread(QObject *parent = nullptr);
18 
19 signals:
20 
21 public slots:
22  void SlotWorkerProcess(QString program, QStringList arguments);
23 
24 };
25 
26 #endif // WORKERTHREAD_H
The WorkerThread class.
Definition: workerthread.h:14