1
0
mirror of https://gitlab.com/OpenMW/openmw.git synced 2025-01-03 17:37:18 +00:00
OpenMW/apps/wizard/methodselectionpage.hpp

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

28 lines
487 B
C++
Raw Normal View History

2013-12-08 20:35:57 +00:00
#ifndef METHODSELECTIONPAGE_HPP
#define METHODSELECTIONPAGE_HPP
#include "ui_methodselectionpage.h"
namespace Wizard
{
class MainWizard;
2013-12-08 20:35:57 +00:00
class MethodSelectionPage : public QWizardPage, private Ui::MethodSelectionPage
{
Q_OBJECT
public:
MethodSelectionPage(QWidget* parent);
2013-12-08 20:35:57 +00:00
int nextId() const override;
2013-12-08 21:58:29 +00:00
private slots:
void handleBuyButton();
2022-09-22 18:26:05 +00:00
private:
MainWizard* mWizard;
2013-12-08 20:35:57 +00:00
};
}
#endif // METHODSELECTIONPAGE_HPP