mirror of
https://github.com/ioquake/launch.git
synced 2025-02-16 17:10:54 +00:00
22 lines
363 B
C++
22 lines
363 B
C++
#ifndef INSTALLWIZARD_PATCH_H
|
|
#define INSTALLWIZARD_PATCH_H
|
|
|
|
#include <QWizardPage>
|
|
|
|
namespace Ui {
|
|
class InstallWizard_Patch;
|
|
}
|
|
|
|
class InstallWizard_Patch : public QWizardPage
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
explicit InstallWizard_Patch(QWidget *parent = 0);
|
|
~InstallWizard_Patch();
|
|
|
|
private:
|
|
Ui::InstallWizard_Patch *ui;
|
|
};
|
|
|
|
#endif // INSTALLWIZARD_PATCH_H
|