16 lines
205 B
C++
16 lines
205 B
C++
#ifndef SETTINGS_HPP
|
|
#define SETTINGS_HPP
|
|
|
|
#include <QObject>
|
|
|
|
class Settings : public QObject
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
explicit Settings(QObject *parent = nullptr);
|
|
|
|
signals:
|
|
};
|
|
|
|
#endif // SETTINGS_HPP
|