mirror of
https://gitlab.com/OpenMW/openmw.git
synced 2025-01-07 03:54:40 +00:00
22 lines
340 B
C++
22 lines
340 B
C++
|
#ifndef INSTALLATIONPAGE_HPP
|
||
|
#define INSTALLATIONPAGE_HPP
|
||
|
|
||
|
#include <QWizardPage>
|
||
|
|
||
|
#include "ui_installationpage.h"
|
||
|
|
||
|
namespace Wizard
|
||
|
{
|
||
|
|
||
|
class InstallationPage : public QWizardPage, private Ui::InstallationPage
|
||
|
{
|
||
|
Q_OBJECT
|
||
|
public:
|
||
|
InstallationPage(QWidget *parent = 0);
|
||
|
|
||
|
};
|
||
|
|
||
|
}
|
||
|
|
||
|
#endif // INSTALLATIONPAGE_HPP
|