mirror of
https://gitlab.com/OpenMW/openmw.git
synced 2025-01-01 03:21:41 +00:00
22 lines
396 B
C++
22 lines
396 B
C++
|
#ifndef EXISTINGINSTALLATIONPAGE_HPP
|
||
|
#define EXISTINGINSTALLATIONPAGE_HPP
|
||
|
|
||
|
#include <QWizardPage>
|
||
|
|
||
|
#include "ui_existinginstallationpage.h"
|
||
|
|
||
|
namespace Wizard
|
||
|
{
|
||
|
|
||
|
class ExistingInstallationPage : public QWizardPage, private Ui::ExistingInstallationPage
|
||
|
{
|
||
|
Q_OBJECT
|
||
|
public:
|
||
|
ExistingInstallationPage(QWidget *parent = 0);
|
||
|
|
||
|
};
|
||
|
|
||
|
}
|
||
|
|
||
|
#endif // EXISTINGINSTALLATIONPAGE_HPP
|