mirror of
https://github.com/laurent22/joplin.git
synced 2024-12-24 10:27:10 +02:00
17 lines
153 B
C++
Executable File
17 lines
153 B
C++
Executable File
#ifndef SETTINGS_H
|
|
#define SETTINGS_H
|
|
|
|
#include <stable.h>
|
|
|
|
namespace jop {
|
|
|
|
class Settings : public QSettings {
|
|
|
|
Q_OBJECT
|
|
|
|
};
|
|
|
|
}
|
|
|
|
#endif // SETTINGS_H
|