1
0
Fork 0
mirror of https://github.com/OpenMW/openmw.git synced 2025-01-16 19:29:56 +00:00
openmw/apps/wizard/methodselectionpage.hpp

27 lines
454 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(MainWizard *wizard);
int nextId() const;
private:
MainWizard *mWizard;
};
}
#endif // METHODSELECTIONPAGE_HPP