1
0
mirror of https://gitlab.com/OpenMW/openmw.git synced 2025-01-10 06:39:49 +00:00
OpenMW/apps/launcher/settings/graphicssettings.hpp

19 lines
345 B
C++
Raw Normal View History

#ifndef GRAPHICSSETTINGS_HPP
#define GRAPHICSSETTINGS_HPP
#include "settingsbase.hpp"
2013-10-25 16:17:26 +00:00
namespace Launcher
{
2013-10-25 16:17:26 +00:00
class GraphicsSettings : public SettingsBase<QMap<QString, QString> >
{
public:
GraphicsSettings();
~GraphicsSettings();
2013-10-25 16:17:26 +00:00
bool writeFile(QTextStream &stream);
2013-10-25 16:17:26 +00:00
};
}
#endif // GRAPHICSSETTINGS_HPP