19 lines
373 B
C++
19 lines
373 B
C++
#ifndef PASSWORDINDLG_H
|
|
#define PASSWORDINDLG_H
|
|
|
|
#include <QDialog>
|
|
#include <QLineEdit>
|
|
#include <QDialogButtonBox>
|
|
|
|
class PasswordInChDlg : public QDialog {
|
|
Q_OBJECT
|
|
public:
|
|
explicit PasswordInChDlg(QWidget *parent = 0);
|
|
|
|
QLineEdit *fdPassword;
|
|
QPushButton *btnChangePassword;
|
|
QDialogButtonBox *btnBox;
|
|
};
|
|
|
|
#endif // PASSWORDINDLG_H
|