1
0
mirror of https://gitlab.com/OpenMW/openmw.git synced 2024-12-28 18:18:52 +00:00
OpenMW/apps/wizard/importpage.hpp

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

25 lines
372 B
C++
Raw Normal View History

2013-12-08 20:35:57 +00:00
#ifndef IMPORTPAGE_HPP
#define IMPORTPAGE_HPP
#include "ui_importpage.h"
namespace Wizard
{
class MainWizard;
2013-12-08 20:35:57 +00:00
class ImportPage : public QWizardPage, private Ui::ImportPage
{
Q_OBJECT
public:
ImportPage(QWidget* parent);
2013-12-08 20:35:57 +00:00
int nextId() const override;
2013-12-08 21:58:29 +00:00
private:
MainWizard* mWizard;
2013-12-08 20:35:57 +00:00
};
}
#endif // IMPORTPAGE_HPP