OpenMW
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Groups Pages
intropage.hpp
Go to the documentation of this file.
1 #ifndef INTROPAGE_HPP
2 #define INTROPAGE_HPP
3 
4 #include <QWizardPage>
5 
6 #include "ui_intropage.h"
7 
8 namespace Wizard
9 {
10  class MainWizard;
11 
12  class IntroPage : public QWizardPage, private Ui::IntroPage
13  {
14  Q_OBJECT
15  public:
16  IntroPage(QWidget *parent);
17 
18  int nextId() const;
19 
20  private:
22  };
23 
24 }
25 
26 #endif // INTROPAGE_HPP
Definition: mainwizard.hpp:18
MainWizard * mWizard
Definition: intropage.hpp:21
IntroPage(QWidget *parent)
Definition: intropage.cpp:5
int nextId() const
Definition: intropage.cpp:14
Definition: intropage.hpp:12