mirror of
https://gitlab.com/OpenMW/openmw.git
synced 2025-04-30 13:57:59 +03:00
20 lines
426 B
C++
20 lines
426 B
C++
![]() |
#ifndef LAUNCHERSETTINGS_HPP
|
||
|
#define LAUNCHERSETTINGS_HPP
|
||
|
|
||
|
#include "settingsbase.hpp"
|
||
|
|
||
|
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
|