1
0
Fork 0
mirror of https://github.com/OpenMW/openmw.git synced 2025-01-16 09:59:56 +00:00
openmw/apps/wizard/conclusionpage.hpp

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

28 lines
456 B
C++
Raw Normal View History

2013-12-08 20:35:57 +00:00
#ifndef CONCLUSIONPAGE_HPP
#define CONCLUSIONPAGE_HPP
#include "ui_conclusionpage.h"
namespace Wizard
{
class MainWizard;
2013-12-08 20:35:57 +00:00
class ConclusionPage : public QWizardPage, private Ui::ConclusionPage
{
Q_OBJECT
public:
ConclusionPage(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;
protected:
void initializePage() override;
2013-12-08 20:35:57 +00:00
};
}
#endif // CONCLUSIONPAGE_HPP