2021-11-23 09:21:07 +08:00
|
|
|
//
|
|
|
|
|
// Created by Krad on 2021/11/22.
|
|
|
|
|
//
|
|
|
|
|
|
|
|
|
|
#ifndef GUI_ADMINSETTINGFORM_H
|
|
|
|
|
#define GUI_ADMINSETTINGFORM_H
|
|
|
|
|
|
2022-02-14 11:40:40 +08:00
|
|
|
#include "src/forms/tabformwidget.h"
|
2021-11-23 09:21:07 +08:00
|
|
|
|
|
|
|
|
class AdminSettingForm:public TabFormWidget {
|
|
|
|
|
Q_OBJECT
|
|
|
|
|
public:
|
|
|
|
|
explicit AdminSettingForm(QWidget *parent = nullptr, Qt::WindowFlags f = Qt::WindowFlags());
|
|
|
|
|
~AdminSettingForm() ;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#endif //GUI_ADMINSETTINGFORM_H
|