2013-01-25 04:19:06 +00:00
|
|
|
#ifndef GRAPHICSSETTINGS_HPP
|
|
|
|
#define GRAPHICSSETTINGS_HPP
|
|
|
|
|
2013-12-24 23:50:25 +00:00
|
|
|
#include <components/config/settingsbase.hpp>
|
2013-01-25 04:19:06 +00:00
|
|
|
|
2013-10-25 16:17:26 +00:00
|
|
|
namespace Launcher
|
2013-01-25 04:19:06 +00:00
|
|
|
{
|
2013-12-24 23:50:25 +00:00
|
|
|
class GraphicsSettings : public Config::SettingsBase<QMap<QString, QString> >
|
2013-10-25 16:17:26 +00:00
|
|
|
{
|
|
|
|
public:
|
|
|
|
GraphicsSettings();
|
|
|
|
~GraphicsSettings();
|
2013-01-25 04:19:06 +00:00
|
|
|
|
2013-10-25 16:17:26 +00:00
|
|
|
bool writeFile(QTextStream &stream);
|
2013-01-25 04:19:06 +00:00
|
|
|
|
2013-10-25 16:17:26 +00:00
|
|
|
};
|
|
|
|
}
|
2013-01-25 04:19:06 +00:00
|
|
|
#endif // GRAPHICSSETTINGS_HPP
|