mirror of
https://github.com/TomHarte/CLK.git
synced 2024-11-03 08:05:40 +00:00
12 lines
189 B
C++
12 lines
189 B
C++
#ifndef SETTINGS_H
|
|
#define SETTINGS_H
|
|
|
|
#include <QSettings>
|
|
|
|
class Settings: public QSettings {
|
|
public:
|
|
Settings() : QSettings("thomasharte", "Clock Signal") {}
|
|
};
|
|
|
|
#endif // SETTINGS_H
|