mirror of
https://gitlab.com/OpenMW/openmw.git
synced 2025-01-10 06:39:49 +00:00
ee27e3bb58
Conflicts: apps/launcher/CMakeLists.txt apps/launcher/datafilespage.cpp apps/launcher/datafilespage.hpp apps/launcher/graphicspage.cpp components/fileorderlist/utils/filedialog.cpp components/fileorderlist/utils/filedialog.hpp
17 lines
295 B
C++
17 lines
295 B
C++
#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
|