20 lines
412 B
C++
20 lines
412 B
C++
#ifndef USBDETECTDIALOG_H
|
|
#define USBDETECTDIALOG_H
|
|
|
|
#include <QDialog>
|
|
#include <QListWidget>
|
|
|
|
class UsbDetectDialog : public QDialog {
|
|
Q_OBJECT
|
|
public:
|
|
explicit UsbDetectDialog(QWidget *parent = 0);
|
|
signals:
|
|
void acceptData(QString string1, QString string2);
|
|
private:
|
|
void detectDriver();
|
|
QListWidget *fdDrives;
|
|
QLineEdit *fdPassword;
|
|
};
|
|
|
|
#endif // USBDETECTDIALOG_H
|