#ifndef INSTALLATIONPAGE_HPP #define INSTALLATIONPAGE_HPP #include #include "ui_installationpage.h" namespace Wizard { class MainWizard; class InstallationPage : public QWizardPage, private Ui::InstallationPage { Q_OBJECT public: InstallationPage(MainWizard *wizard); int nextId() const; private: MainWizard *mWizard; protected: void initializePage(); }; } #endif // INSTALLATIONPAGE_HPP