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