mirror of
https://gitlab.com/OpenMW/openmw.git
synced 2024-12-29 03:19:44 +00:00
26 lines
373 B
C++
26 lines
373 B
C++
#ifndef IMPORTPAGE_HPP
|
|
#define IMPORTPAGE_HPP
|
|
|
|
#include "ui_importpage.h"
|
|
|
|
namespace Wizard
|
|
{
|
|
class MainWizard;
|
|
|
|
class ImportPage : public QWizardPage, private Ui::ImportPage
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
ImportPage(QWidget *parent);
|
|
|
|
int nextId() const override;
|
|
|
|
private:
|
|
MainWizard *mWizard;
|
|
|
|
};
|
|
|
|
}
|
|
|
|
#endif // IMPORTPAGE_HPP
|