mirror of
https://github.com/OpenMW/openmw.git
synced 2025-01-16 19:59:55 +00:00
23 lines
425 B
C++
23 lines
425 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);
|
|
|
|
int nextId() const;
|
|
|
|
};
|
|
|
|
}
|
|
|
|
#endif // EXISTINGINSTALLATIONPAGE_HPP
|