mirror of
https://gitlab.com/OpenMW/openmw.git
synced 2025-01-04 02:41:19 +00:00
24 lines
390 B
C++
24 lines
390 B
C++
#ifndef METHODSELECTIONPAGE_HPP
|
|
#define METHODSELECTIONPAGE_HPP
|
|
|
|
#include <QWizardPage>
|
|
|
|
#include "ui_methodselectionpage.h"
|
|
|
|
namespace Wizard
|
|
{
|
|
|
|
class MethodSelectionPage : public QWizardPage, private Ui::MethodSelectionPage
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
MethodSelectionPage(QWidget *parent = 0);
|
|
|
|
int nextId() const;
|
|
|
|
};
|
|
|
|
}
|
|
|
|
#endif // METHODSELECTIONPAGE_HPP
|