mirror of
https://github.com/OpenMW/openmw.git
synced 2025-01-16 19:59:55 +00:00
23 lines
355 B
C++
23 lines
355 B
C++
#ifndef CONCLUSIONPAGE_HPP
|
|
#define CONCLUSIONPAGE_HPP
|
|
|
|
#include <QWizardPage>
|
|
|
|
#include "ui_conclusionpage.h"
|
|
|
|
namespace Wizard
|
|
{
|
|
|
|
class ConclusionPage : public QWizardPage, private Ui::ConclusionPage
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
ConclusionPage(QWidget *parent = 0);
|
|
|
|
int nextId() const;
|
|
|
|
};
|
|
|
|
}
|
|
|
|
#endif // CONCLUSIONPAGE_HPP
|