mirror of
https://github.com/TES3MP/openmw-tes3mp.git
synced 2025-01-20 07:23:51 +00:00
30 lines
480 B
C++
30 lines
480 B
C++
#ifndef INSTALLATIONPAGE_HPP
|
|
#define INSTALLATIONPAGE_HPP
|
|
|
|
#include <QWizardPage>
|
|
|
|
#include "ui_installationpage.h"
|
|
|
|
namespace Wizard
|
|
{
|
|
class MainWizard;
|
|
|
|
class InstallationPage : public QWizardPage, private Ui::InstallationPage
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
InstallationPage(MainWizard *wizard);
|
|
|
|
int nextId() const;
|
|
|
|
private:
|
|
MainWizard *mWizard;
|
|
|
|
protected:
|
|
void initializePage();
|
|
|
|
};
|
|
|
|
}
|
|
|
|
#endif // INSTALLATIONPAGE_HPP
|