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