2013-12-08 21:35:57 +01:00
|
|
|
#ifndef IMPORTPAGE_HPP
|
|
|
|
#define IMPORTPAGE_HPP
|
|
|
|
|
|
|
|
#include "ui_importpage.h"
|
|
|
|
|
|
|
|
namespace Wizard
|
|
|
|
{
|
2013-12-13 13:38:49 +01:00
|
|
|
class MainWizard;
|
2013-12-08 21:35:57 +01:00
|
|
|
|
|
|
|
class ImportPage : public QWizardPage, private Ui::ImportPage
|
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
public:
|
2022-09-22 21:26:05 +03:00
|
|
|
ImportPage(QWidget* parent);
|
2013-12-08 21:35:57 +01:00
|
|
|
|
2020-10-16 22:18:54 +04:00
|
|
|
int nextId() const override;
|
2013-12-08 22:58:29 +01:00
|
|
|
|
2013-12-13 13:38:49 +01:00
|
|
|
private:
|
2022-09-22 21:26:05 +03:00
|
|
|
MainWizard* mWizard;
|
2013-12-08 21:35:57 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif // IMPORTPAGE_HPP
|