mirror of
https://github.com/TES3MP/openmw-tes3mp.git
synced 2025-01-15 12:49:54 +00:00
28 lines
496 B
C++
28 lines
496 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
|