1
0
mirror of https://gitlab.com/OpenMW/openmw.git synced 2025-01-07 03:54:40 +00:00
OpenMW/apps/wizard/installationpage.hpp

24 lines
369 B
C++
Raw Normal View History

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