mirror of
https://github.com/obhq/obliteration.git
synced 2024-11-23 11:19:56 +00:00
20 lines
443 B
C++
20 lines
443 B
C++
#pragma once
|
|
|
|
#include <QString>
|
|
|
|
bool hasRequiredUserSettings();
|
|
|
|
bool hasSystemDirectorySetting();
|
|
QString readSystemDirectorySetting();
|
|
void writeSystemDirectorySetting(const QString &v);
|
|
|
|
bool hasGamesDirectorySetting();
|
|
QString readGamesDirectorySetting();
|
|
void writeGamesDirectorySetting(const QString &v);
|
|
|
|
// Group registry for QSettings.
|
|
namespace SettingGroups {
|
|
extern const QString user;
|
|
extern const QString mainWindow;
|
|
}
|