mirror of
				https://github.com/OpenMW/openmw.git
				synced 2025-11-03 23:26:40 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			26 lines
		
	
	
	
		
			385 B
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			26 lines
		
	
	
	
		
			385 B
		
	
	
	
		
			C++
		
	
	
	
	
	
#ifndef INTROPAGE_HPP
 | 
						|
#define INTROPAGE_HPP
 | 
						|
 | 
						|
#include "ui_intropage.h"
 | 
						|
 | 
						|
#include <QWizard>
 | 
						|
 | 
						|
namespace Wizard
 | 
						|
{
 | 
						|
    class MainWizard;
 | 
						|
 | 
						|
    class IntroPage : public QWizardPage, private Ui::IntroPage
 | 
						|
    {
 | 
						|
        Q_OBJECT
 | 
						|
    public:
 | 
						|
        IntroPage(QWidget* parent);
 | 
						|
 | 
						|
        int nextId() const override;
 | 
						|
 | 
						|
    private:
 | 
						|
        MainWizard* mWizard;
 | 
						|
    };
 | 
						|
 | 
						|
}
 | 
						|
 | 
						|
#endif // INTROPAGE_HPP
 |