mirror of
				https://github.com/OpenMW/openmw.git
				synced 2025-10-30 23:26:38 +00:00 
			
		
		
		
	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
		
			
				
	
	
		
			16 lines
		
	
	
	
		
			295 B
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			16 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
 |