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.
27 lines
380 B
C++
27 lines
380 B
C++
#ifndef INTROPAGE_HPP
|
|
#define INTROPAGE_HPP
|
|
|
|
#include <QWizardPage>
|
|
|
|
#include "ui_intropage.h"
|
|
|
|
namespace Wizard
|
|
{
|
|
class MainWizard;
|
|
|
|
class IntroPage : public QWizardPage, private Ui::IntroPage
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
IntroPage(QWidget *parent);
|
|
|
|
int nextId() const;
|
|
|
|
private:
|
|
MainWizard *mWizard;
|
|
};
|
|
|
|
}
|
|
|
|
#endif // INTROPAGE_HPP
|