mirror of
				https://github.com/TES3MP/openmw-tes3mp.git
				synced 2025-10-31 15:56:42 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			29 lines
		
	
	
	
		
			413 B
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			29 lines
		
	
	
	
		
			413 B
		
	
	
	
		
			C++
		
	
	
	
	
	
| #ifndef CSV_PREFS_PAGE_H
 | |
| #define CSV_PREFS_PAGE_H
 | |
| 
 | |
| #include "pagebase.hpp"
 | |
| 
 | |
| class QGridLayout;
 | |
| 
 | |
| namespace CSMPrefs
 | |
| {
 | |
|     class Setting;
 | |
| }
 | |
| 
 | |
| namespace CSVPrefs
 | |
| {
 | |
|     class Page : public PageBase
 | |
|     {
 | |
|             Q_OBJECT
 | |
| 
 | |
|             QGridLayout *mGrid;
 | |
| 
 | |
|         public:
 | |
| 
 | |
|             Page (CSMPrefs::Category& category, QWidget *parent);
 | |
| 
 | |
|             void addSetting (CSMPrefs::Setting *setting);
 | |
|     };
 | |
| }
 | |
| 
 | |
| #endif
 |