retro-imager/src/driveformatthread.h

28 lines
517 B
C
Raw Normal View History

2020-03-04 16:55:40 +01:00
#ifndef DRIVEFORMATTHREAD_H
#define DRIVEFORMATTHREAD_H
/*
* SPDX-License-Identifier: Apache-2.0
* Copyright (C) 2020 Raspberry Pi Ltd
2020-03-04 16:55:40 +01:00
*/
#include <QThread>
class DriveFormatThread : public QThread
{
Q_OBJECT
public:
DriveFormatThread(const QByteArray &device, QObject *parent = nullptr);
virtual ~DriveFormatThread();
virtual void run();
signals:
void success();
void error(QString msg);
protected:
QByteArray _device;
};
#endif // DRIVEFORMATTHREAD_H