RecordControlApplication/CheckStorageThread.h

15 lines
241 B
C++
Executable File

#ifndef CHECKSTORAGETHREAD_H
#define CHECKSTORAGETHREAD_H
#include <QThread>
class CheckStorageThread : public QThread {
Q_OBJECT
public:
CheckStorageThread();
protected:
void run() override;
};
#endif // CHECKSTORAGETHREAD_H