mirror of
https://gitlab.com/OpenMW/openmw.git
synced 2025-01-09 12:42:11 +00:00
22 lines
482 B
C++
22 lines
482 B
C++
#ifndef LAUNCHERSETTINGS_HPP
|
|
#define LAUNCHERSETTINGS_HPP
|
|
|
|
#include "settingsbase.hpp"
|
|
|
|
namespace Config
|
|
{
|
|
class LauncherSettings : public SettingsBase<QMap<QString, QString> >
|
|
{
|
|
public:
|
|
LauncherSettings();
|
|
~LauncherSettings();
|
|
|
|
QStringList subKeys(const QString &key);
|
|
QStringList values(const QString &key, Qt::MatchFlags flags = Qt::MatchExactly);
|
|
|
|
bool writeFile(QTextStream &stream);
|
|
|
|
};
|
|
}
|
|
#endif // LAUNCHERSETTINGS_HPP
|