mirror of
https://github.com/ioquake/launch.git
synced 2024-11-22 11:31:04 +00:00
23 lines
411 B
C
23 lines
411 B
C
|
#ifndef INSTALLWIZARD_INSTALLTYPE_H
|
||
|
#define INSTALLWIZARD_INSTALLTYPE_H
|
||
|
|
||
|
#include <QWizardPage>
|
||
|
|
||
|
namespace Ui {
|
||
|
class InstallWizard_InstallType;
|
||
|
}
|
||
|
|
||
|
class InstallWizard_InstallType : public QWizardPage
|
||
|
{
|
||
|
Q_OBJECT
|
||
|
|
||
|
public:
|
||
|
explicit InstallWizard_InstallType(QWidget *parent = 0);
|
||
|
~InstallWizard_InstallType();
|
||
|
|
||
|
private:
|
||
|
Ui::InstallWizard_InstallType *ui;
|
||
|
};
|
||
|
|
||
|
#endif // INSTALLWIZARD_INSTALLTYPE_H
|