qt/LedOK/passwordindlg.h

19 lines
363 B
C
Raw Normal View History

2022-08-25 18:37:24 +08:00
#ifndef PASSWORDINDLG_H
#define PASSWORDINDLG_H
#include "basedlg.h"
#include <QLineEdit>
#include <QDialogButtonBox>
class PasswordInChDlg : public BaseDlg {
Q_OBJECT
public:
explicit PasswordInChDlg(QWidget *parent = nullptr);
QLineEdit *fdPassword;
QPushButton *btnChangePassword;
QDialogButtonBox *btnBox;
};
#endif // PASSWORDINDLG_H