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.
|
#ifndef GRAPHICSSETTINGS_HPP
|
|
#define GRAPHICSSETTINGS_HPP
|
|
|
|
#include "settingsbase.hpp"
|
|
|
|
class GraphicsSettings : public SettingsBase<QMap<QString, QString> >
|
|
{
|
|
public:
|
|
GraphicsSettings();
|
|
~GraphicsSettings();
|
|
|
|
bool writeFile(QTextStream &stream);
|
|
|
|
};
|
|
|
|
#endif // GRAPHICSSETTINGS_HPP
|