mirror of
https://gitlab.com/OpenMW/openmw.git
synced 2025-01-04 02:41:19 +00:00
27 lines
383 B
C++
27 lines
383 B
C++
#ifndef INTROPAGE_HPP
|
|
#define INTROPAGE_HPP
|
|
|
|
#include <QWizardPage>
|
|
|
|
#include "ui_intropage.h"
|
|
|
|
namespace Wizard
|
|
{
|
|
class MainWizard;
|
|
|
|
class IntroPage : public QWizardPage, private Ui::IntroPage
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
IntroPage(MainWizard *wizard);
|
|
|
|
int nextId() const;
|
|
|
|
private:
|
|
MainWizard *mWizard;
|
|
};
|
|
|
|
}
|
|
|
|
#endif // INTROPAGE_HPP
|