You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
369 B
C++
24 lines
369 B
C++
#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);
|
|
|
|
int nextId() const;
|
|
|
|
};
|
|
|
|
}
|
|
|
|
#endif // INSTALLATIONPAGE_HPP
|