mirror of
https://github.com/TES3MP/openmw-tes3mp.git
synced 2025-01-28 19:15:32 +00:00
21 lines
382 B
C++
21 lines
382 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);
|
|
|
|
};
|
|
|
|
}
|
|
|
|
#endif // INSTALLATIONTARGETPAGE_HPP
|