mirror of
https://gitlab.com/OpenMW/openmw.git
synced 2024-12-29 03:19:44 +00:00
24 lines
411 B
C++
24 lines
411 B
C++
#ifndef INSTALLATIONTARGETPAGE_HPP
|
|
#define INSTALLATIONTARGETPAGE_HPP
|
|
|
|
#include <QWizardPage>
|
|
|
|
#include "ui_installationtargetpage.h"
|
|
|
|
namespace Wizard
|
|
{
|
|
|
|
class InstallationTargetPage : public QWizardPage, private Ui::InstallationTargetPage
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
InstallationTargetPage(QWidget *parent = 0);
|
|
|
|
int nextId() const;
|
|
|
|
};
|
|
|
|
}
|
|
|
|
#endif // INSTALLATIONTARGETPAGE_HPP
|