forked from teamnwah/openmw-tes3coop
23 lines
327 B
C++
23 lines
327 B
C++
#ifndef IMPORTPAGE_HPP
|
|
#define IMPORTPAGE_HPP
|
|
|
|
#include <QWizardPage>
|
|
|
|
#include "ui_importpage.h"
|
|
|
|
namespace Wizard
|
|
{
|
|
|
|
class ImportPage : public QWizardPage, private Ui::ImportPage
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
ImportPage(QWidget *parent = 0);
|
|
|
|
int nextId() const;
|
|
|
|
};
|
|
|
|
}
|
|
|
|
#endif // IMPORTPAGE_HPP
|