You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
384 B
28 lines
384 B
#ifndef DEVICELIST_H |
|
#define DEVICELIST_H |
|
|
|
#include <QDialog> |
|
|
|
namespace Ui { |
|
class devicelist; |
|
} |
|
|
|
class devicelist : public QDialog |
|
{ |
|
Q_OBJECT |
|
|
|
public: |
|
explicit devicelist(QWidget *parent = nullptr); |
|
~devicelist(); |
|
|
|
signals: |
|
void signalIDpath(QString); |
|
|
|
private slots: |
|
void on_buttonBox_accepted(); |
|
|
|
private: |
|
Ui::devicelist *ui; |
|
}; |
|
|
|
#endif // DEVICELIST_H
|
|
|