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