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.
31 lines
463 B
C++
31 lines
463 B
C++
#ifndef CONCLUSIONPAGE_HPP
|
|
#define CONCLUSIONPAGE_HPP
|
|
|
|
#include <QWizardPage>
|
|
|
|
#include "ui_conclusionpage.h"
|
|
|
|
namespace Wizard
|
|
{
|
|
class MainWizard;
|
|
|
|
class ConclusionPage : public QWizardPage, private Ui::ConclusionPage
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
ConclusionPage(QWidget *parent);
|
|
|
|
int nextId() const;
|
|
|
|
private:
|
|
MainWizard *mWizard;
|
|
|
|
protected:
|
|
void initializePage();
|
|
|
|
};
|
|
|
|
}
|
|
|
|
#endif // CONCLUSIONPAGE_HPP
|