23 lines
265 B
C
23 lines
265 B
C
|
|
#ifndef SETTING_H
|
||
|
|
#define SETTING_H
|
||
|
|
|
||
|
|
#include <QWidget>
|
||
|
|
|
||
|
|
namespace Ui {
|
||
|
|
class Setting;
|
||
|
|
}
|
||
|
|
|
||
|
|
class Setting : public QWidget
|
||
|
|
{
|
||
|
|
Q_OBJECT
|
||
|
|
|
||
|
|
public:
|
||
|
|
explicit Setting(QWidget *parent = nullptr);
|
||
|
|
~Setting();
|
||
|
|
|
||
|
|
private:
|
||
|
|
Ui::Setting *ui;
|
||
|
|
};
|
||
|
|
|
||
|
|
#endif // SETTING_H
|