mirror of
https://github.com/ioquake/launch.git
synced 2024-11-22 03:21:23 +00:00
22 lines
411 B
C++
22 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
|