19 lines
359 B
C
19 lines
359 B
C
|
|
//
|
||
|
|
// Created by Krad on 2021/11/22.
|
||
|
|
//
|
||
|
|
|
||
|
|
#ifndef GUI_ADMINSETTINGFORM_H
|
||
|
|
#define GUI_ADMINSETTINGFORM_H
|
||
|
|
|
||
|
|
#include "TabFormWidget.h"
|
||
|
|
|
||
|
|
class AdminSettingForm:public TabFormWidget {
|
||
|
|
Q_OBJECT
|
||
|
|
public:
|
||
|
|
explicit AdminSettingForm(QWidget *parent = nullptr, Qt::WindowFlags f = Qt::WindowFlags());
|
||
|
|
~AdminSettingForm() ;
|
||
|
|
};
|
||
|
|
|
||
|
|
|
||
|
|
#endif //GUI_ADMINSETTINGFORM_H
|