1
0
mirror of https://gitlab.com/OpenMW/openmw.git synced 2025-01-01 03:21:41 +00:00
OpenMW/apps/wizard/installationtargetpage.hpp

24 lines
411 B
C++
Raw Normal View History

2013-12-08 20:35:57 +00:00
#ifndef INSTALLATIONTARGETPAGE_HPP
#define INSTALLATIONTARGETPAGE_HPP
#include <QWizardPage>
#include "ui_installationtargetpage.h"
namespace Wizard
{
class InstallationTargetPage : public QWizardPage, private Ui::InstallationTargetPage
{
Q_OBJECT
public:
InstallationTargetPage(QWidget *parent = 0);
2013-12-08 21:58:29 +00:00
int nextId() const;
2013-12-08 20:35:57 +00:00
};
}
#endif // INSTALLATIONTARGETPAGE_HPP