mirror of
https://github.com/TomHarte/CLK.git
synced 2024-11-01 10:05:55 +00:00
9 lines
142 B
C++
9 lines
142 B
C++
#pragma once
|
|
|
|
#include <QSettings>
|
|
|
|
class Settings: public QSettings {
|
|
public:
|
|
Settings() : QSettings("thomasharte", "Clock Signal") {}
|
|
};
|