forked from blue/squawk
27 lines
334 B
C++
27 lines
334 B
C++
#ifndef SETTINGS_H
|
|
#define SETTINGS_H
|
|
|
|
#include <QWidget>
|
|
#include <QScopedPointer>
|
|
|
|
namespace Ui
|
|
{
|
|
class Settings;
|
|
}
|
|
|
|
/**
|
|
* @todo write docs
|
|
*/
|
|
class Settings : public QWidget
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
Settings(QWidget* parent = nullptr);
|
|
~Settings();
|
|
|
|
private:
|
|
QScopedPointer<Ui::Settings> m_ui;
|
|
};
|
|
|
|
#endif // SETTINGS_H
|