qt/LedOK/base/changepasswordform.h

17 lines
316 B
C
Raw Permalink Normal View History

2023-04-18 14:14:46 +08:00
#ifndef CHANGEPASSWORDFORM_H
#define CHANGEPASSWORDFORM_H
2023-05-17 18:34:17 +08:00
#include <QDialog>
2023-04-18 14:14:46 +08:00
#include <QLineEdit>
2023-05-15 16:06:10 +08:00
class ChangePasswordForm : public QDialog {
2023-04-18 14:14:46 +08:00
Q_OBJECT
public:
explicit ChangePasswordForm(QWidget *parent = nullptr);
QLineEdit *fdOld, *fdNew, *fdAgn;
};
#endif // CHANGEPASSWORDFORM_H