You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
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
|