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