You've already forked joplin
mirror of
https://github.com/laurent22/joplin.git
synced 2025-07-03 23:50:33 +02:00
22 lines
283 B
C
22 lines
283 B
C
![]() |
#ifndef SETTING_H
|
||
|
#define SETTING_H
|
||
|
|
||
|
#include <stable.h>
|
||
|
|
||
|
#include "models/basemodel.h"
|
||
|
|
||
|
namespace jop {
|
||
|
|
||
|
class Setting : public BaseModel {
|
||
|
|
||
|
public:
|
||
|
|
||
|
static void setSettings(const QSettings::SettingsMap &map);
|
||
|
static QSettings::SettingsMap settings();
|
||
|
|
||
|
};
|
||
|
|
||
|
}
|
||
|
|
||
|
#endif // SETTING_H
|