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
382 B
29 lines
382 B
#ifndef PASSWD_H |
|
#define PASSWD_H |
|
|
|
#include <QDialog> |
|
|
|
namespace Ui { |
|
class passwd; |
|
} |
|
|
|
class passwd : public QDialog |
|
{ |
|
Q_OBJECT |
|
|
|
public: |
|
explicit passwd(QWidget *parent = nullptr); |
|
~passwd(); |
|
|
|
private slots: |
|
void on_buttonBox_accepted(); |
|
|
|
void on_pushButton_clicked(); |
|
|
|
void on_pushButton_2_clicked(); |
|
|
|
private: |
|
Ui::passwd *ui; |
|
}; |
|
|
|
#endif // PASSWD_H
|
|
|