mirror of
				https://github.com/OpenMW/openmw.git
				synced 2025-10-30 23:56:38 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			21 lines
		
	
	
	
		
			482 B
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			21 lines
		
	
	
	
		
			482 B
		
	
	
	
		
			C++
		
	
	
	
	
	
| #ifndef LAUNCHERSETTINGS_HPP
 | |
| #define LAUNCHERSETTINGS_HPP
 | |
| 
 | |
| #include "settingsbase.hpp"
 | |
| 
 | |
| namespace Config
 | |
| {
 | |
|     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
 |