1
0
Fork 1
mirror of https://github.com/TES3MP/openmw-tes3mp.git synced 2025-01-15 14:49:56 +00:00
openmw-tes3mp/apps/wizard/mainwizard.hpp
2013-12-08 21:35:57 +01:00

33 lines
561 B
C++

#ifndef MAINWIZARD_HPP
#define MAINWIZARD_HPP
#include <QWizard>
namespace Wizard
{
class MainWizard : public QWizard
{
Q_OBJECT
public:
enum {
Page_Intro,
Page_MethodSelection,
Page_ExistingInstallation,
Page_InstallationTarget,
Page_ComponentSelection,
Page_Installation,
Page_Import,
Page_Conclusion
};
MainWizard(QWidget *parent = 0);
private:
void setupPages();
};
}
#endif // MAINWIZARD_HPP