Move UpdatePTUDevCtrl files into subdir UpdatePTUDevCtrl

This commit is contained in:
2024-02-29 14:41:45 +01:00
parent 4233ca8637
commit 8eff6e5d10
47 changed files with 0 additions and 0 deletions

View File

@@ -0,0 +1,17 @@
#ifndef WORKER_THREAD_H_INCLUDED
#define WORKER_THREAD_H_INCLUDED
#include <QThread>
#include <QString>
class WorkerThread : public QThread {
Q_OBJECT
public:
WorkerThread(QString const &name, QObject *parent = nullptr);
virtual ~WorkerThread();
protected:
// virtual void run();
};
#endif // WORKER_THREAD_H_INCLUDED