1
0
mirror of https://gitlab.com/OpenMW/openmw.git synced 2025-01-06 09:55:35 +00:00
OpenMW/apps/wizard/methodselectionpage.hpp
2020-10-16 22:18:54 +04:00

28 lines
460 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 override;
private:
MainWizard *mWizard;
};
}
#endif // METHODSELECTIONPAGE_HPP