mirror of
				https://github.com/OpenMW/openmw.git
				synced 2025-10-31 21:56:41 +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
		
			
				
	
	
		
			19 lines
		
	
	
	
		
			426 B
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			19 lines
		
	
	
	
		
			426 B
		
	
	
	
		
			C++
		
	
	
	
	
	
| #ifndef LAUNCHERSETTINGS_HPP
 | |
| #define LAUNCHERSETTINGS_HPP
 | |
| 
 | |
| #include "settingsbase.hpp"
 | |
| 
 | |
| class LauncherSettings : public SettingsBase<QMap<QString, QString> >
 | |
| {
 | |
| public:
 | |
|     LauncherSettings();
 | |
|     ~LauncherSettings();
 | |
| 
 | |
|     QStringList subKeys(const QString &key);
 | |
|     QStringList values(const QString &key, Qt::MatchFlags flags = Qt::MatchExactly);
 | |
| 
 | |
|     bool writeFile(QTextStream &stream);
 | |
| 
 | |
| };
 | |
| 
 | |
| #endif // LAUNCHERSETTINGS_HPP
 |