You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
openmw/apps/wizard/conclusionpage.hpp

28 lines
456 B
C++

#ifndef CONCLUSIONPAGE_HPP
#define CONCLUSIONPAGE_HPP
#include "ui_conclusionpage.h"
namespace Wizard
{
class MainWizard;
class ConclusionPage : public QWizardPage, private Ui::ConclusionPage
{
Q_OBJECT
public:
ConclusionPage(QWidget* parent);
int nextId() const override;
private:
MainWizard* mWizard;
protected:
void initializePage() override;
};
}
#endif // CONCLUSIONPAGE_HPP