mirror of
https://gitlab.com/OpenMW/openmw.git
synced 2025-01-01 03:21:41 +00:00
27 lines
385 B
C++
27 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
|