1
0
mirror of https://gitlab.com/OpenMW/openmw.git synced 2025-01-04 02:41:19 +00:00
OpenMW/apps/wizard/intropage.hpp

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

27 lines
385 B
C++
Raw Normal View History

2013-12-08 20:35:57 +00:00
#ifndef INTROPAGE_HPP
#define INTROPAGE_HPP
#include "ui_intropage.h"
2022-10-10 11:41:36 +00:00
#include <QWizard>
2013-12-08 20:35:57 +00:00
namespace Wizard
{
class MainWizard;
2013-12-08 20:35:57 +00:00
class IntroPage : public QWizardPage, private Ui::IntroPage
{
Q_OBJECT
public:
IntroPage(QWidget* parent);
2013-12-08 20:35:57 +00:00
int nextId() const override;
2013-12-08 21:58:29 +00:00
private:
MainWizard* mWizard;
2013-12-08 20:35:57 +00:00
};
}
#endif // INTROPAGE_HPP