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