17 lines
318 B
C++
17 lines
318 B
C++
#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
|