mirror of
https://gitlab.com/OpenMW/openmw.git
synced 2025-01-06 00:55:50 +00:00
22 lines
361 B
C++
22 lines
361 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);
|
||
|
|
||
|
};
|
||
|
|
||
|
}
|
||
|
|
||
|
#endif // METHODSELECTIONPAGE_HPP
|