qt/LedOK/program/usbdetectdialog.h

20 lines
420 B
C
Raw Normal View History

2023-04-18 14:14:46 +08:00
#ifndef USBDETECTDIALOG_H
#define USBDETECTDIALOG_H
#include <basedlg.h>
#include <QListWidget>
class UsbDetectDialog : public BaseDlg {
Q_OBJECT
public:
explicit UsbDetectDialog(QWidget *parent = nullptr);
signals:
void acceptData(QString string1, QString string2);
private:
void detectDriver();
QListWidget *fdDrives;
QLineEdit *fdPassword;
};
#endif // USBDETECTDIALOG_H