mirror of
https://github.com/TES3MP/openmw-tes3mp.git
synced 2025-01-15 19:49:54 +00:00
21 lines
484 B
C++
21 lines
484 B
C++
#ifndef LAUNCHERSETTINGS_HPP
|
|
#define LAUNCHERSETTINGS_HPP
|
|
|
|
#include "settingsbase.hpp"
|
|
|
|
namespace Launcher
|
|
{
|
|
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
|