Add AdminSPwd Dialog

This commit is contained in:
kradchen
2023-09-11 16:23:59 +08:00
parent 2bbef648f5
commit 0d5177f422
6 changed files with 74 additions and 2 deletions

View File

@@ -0,0 +1,16 @@
#ifndef CF2CD71D_5155_4FC5_B382_331CBD884F97
#define CF2CD71D_5155_4FC5_B382_331CBD884F97
#include "GUIFormBaseDialog.h"
class AdminSPwdDialog :public GUIFormBaseDialog{
Q_OBJECT
public:
explicit AdminSPwdDialog(QWidget *parent = nullptr, Qt::WindowFlags f = Qt::WindowFlags());
~AdminSPwdDialog() override = default;
protected:
bool updateReferenceData() override{return true;}
private:
};
#endif /* CF2CD71D_5155_4FC5_B382_331CBD884F97 */