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.
29 lines
353 B
29 lines
353 B
#ifndef IDPATH_H |
|
#define IDPATH_H |
|
|
|
#include <QDialog> |
|
|
|
namespace Ui { |
|
class idpath; |
|
} |
|
|
|
class idpath : public QDialog |
|
{ |
|
Q_OBJECT |
|
|
|
public: |
|
explicit idpath(QWidget *parent = nullptr); |
|
~idpath(); |
|
|
|
|
|
signals: |
|
void signalIDpath(QString); |
|
|
|
private slots: |
|
void on_buttonBox_accepted(); |
|
|
|
private: |
|
Ui::idpath *ui; |
|
}; |
|
|
|
#endif // IDPATH_H
|
|
|