OpenMW
apps/launcher/settings/launchersettings.hpp
Go to the documentation of this file.
00001 #ifndef LAUNCHERSETTINGS_HPP
00002 #define LAUNCHERSETTINGS_HPP
00003 
00004 #include "settingsbase.hpp"
00005 
00006 namespace Launcher
00007 {
00008     class LauncherSettings : public SettingsBase<QMap<QString, QString> >
00009     {
00010     public:
00011         LauncherSettings();
00012         ~LauncherSettings();
00013 
00014         QStringList subKeys(const QString &key);
00015         QStringList values(const QString &key, Qt::MatchFlags flags = Qt::MatchExactly);
00016 
00017         bool writeFile(QTextStream &stream);
00018 
00019     };
00020 }
00021 #endif // LAUNCHERSETTINGS_HPP