You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
326 B
C++
22 lines
326 B
C++
11 years ago
|
#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);
|
||
|
|
||
|
};
|
||
|
|
||
|
}
|
||
|
|
||
|
#endif // CONCLUSIONPAGE_HPP
|