1
0
Fork 1
mirror of https://github.com/TES3MP/openmw-tes3mp.git synced 2025-01-15 18:49:54 +00:00
openmw-tes3mp/apps/wizard/importpage.hpp
2020-10-16 22:18:54 +04:00

27 lines
397 B
C++

#ifndef IMPORTPAGE_HPP
#define IMPORTPAGE_HPP
#include <QWizardPage>
#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