1
0
mirror of https://gitlab.com/OpenMW/openmw.git synced 2024-12-28 00:15:06 +00:00
OpenMW/apps/wizard/methodselectionpage.hpp
2022-09-22 21:35:26 +03:00

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