qt/LedOK/base/changepasswordform.h

17 lines
302 B
C
Raw Normal View History

2022-01-04 18:11:48 +08:00
#ifndef CHANGEPASSWORDFORM_H
#define CHANGEPASSWORDFORM_H
2022-08-25 18:37:24 +08:00
#include "basedlg.h"
#include <QLineEdit>
2022-01-04 18:11:48 +08:00
2022-08-25 18:37:24 +08:00
class ChangePasswordForm : public BaseDlg {
2022-01-04 18:11:48 +08:00
Q_OBJECT
public:
explicit ChangePasswordForm(QWidget *parent = nullptr);
2022-08-25 18:37:24 +08:00
QLineEdit *fdOld, *fdNew, *fdAgn;
2022-01-04 18:11:48 +08:00
};
#endif // CHANGEPASSWORDFORM_H