mirror of
				https://github.com/OpenMW/openmw.git
				synced 2025-11-04 06:56:39 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			24 lines
		
	
	
	
		
			372 B
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			24 lines
		
	
	
	
		
			372 B
		
	
	
	
		
			C++
		
	
	
	
	
	
#ifndef IMPORTPAGE_HPP
 | 
						|
#define IMPORTPAGE_HPP
 | 
						|
 | 
						|
#include "ui_importpage.h"
 | 
						|
 | 
						|
namespace Wizard
 | 
						|
{
 | 
						|
    class MainWizard;
 | 
						|
 | 
						|
    class ImportPage : public QWizardPage, private Ui::ImportPage
 | 
						|
    {
 | 
						|
        Q_OBJECT
 | 
						|
    public:
 | 
						|
        ImportPage(QWidget* parent);
 | 
						|
 | 
						|
        int nextId() const override;
 | 
						|
 | 
						|
    private:
 | 
						|
        MainWizard* mWizard;
 | 
						|
    };
 | 
						|
 | 
						|
}
 | 
						|
 | 
						|
#endif // IMPORTPAGE_HPP
 |