2021-11-23 09:21:07 +08:00
|
|
|
//
|
|
|
|
|
// Created by Krad on 2021/11/22.
|
|
|
|
|
//
|
|
|
|
|
|
2022-06-14 18:04:44 +08:00
|
|
|
#ifndef ADMINSETTINGFORM_H
|
|
|
|
|
#define ADMINSETTINGFORM_H
|
2021-11-23 09:21:07 +08:00
|
|
|
|
2022-07-13 10:13:07 +08:00
|
|
|
#include "forms/TabFormWidget.h"
|
2021-11-23 09:21:07 +08:00
|
|
|
|
2022-06-14 18:04:44 +08:00
|
|
|
class AdminSettingForm :public TabFormWidget
|
|
|
|
|
{
|
2021-11-23 09:21:07 +08:00
|
|
|
Q_OBJECT
|
2022-06-14 18:04:44 +08:00
|
|
|
|
2021-11-23 09:21:07 +08:00
|
|
|
public:
|
2022-06-14 18:04:44 +08:00
|
|
|
explicit AdminSettingForm(QWidget* aParent = nullptr, Qt::WindowFlags f = Qt::WindowFlags());
|
|
|
|
|
~AdminSettingForm();
|
2021-11-23 09:21:07 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
2022-06-14 18:04:44 +08:00
|
|
|
#endif //ADMINSETTINGFORM_H
|