mirror of
https://gitlab.com/OpenMW/openmw.git
synced 2024-12-28 00:15:06 +00:00
28 lines
487 B
C++
28 lines
487 B
C++
#ifndef METHODSELECTIONPAGE_HPP
|
|
#define METHODSELECTIONPAGE_HPP
|
|
|
|
#include "ui_methodselectionpage.h"
|
|
|
|
namespace Wizard
|
|
{
|
|
class MainWizard;
|
|
|
|
class MethodSelectionPage : public QWizardPage, private Ui::MethodSelectionPage
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
MethodSelectionPage(QWidget* parent);
|
|
|
|
int nextId() const override;
|
|
|
|
private slots:
|
|
void handleBuyButton();
|
|
|
|
private:
|
|
MainWizard* mWizard;
|
|
};
|
|
|
|
}
|
|
|
|
#endif // METHODSELECTIONPAGE_HPP
|