qt/LedOK/passwordindlg.h
2023-05-05 17:22:54 +08:00

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