mirror of
https://bitbucket.org/librepilot/librepilot.git
synced 2025-01-08 19:46:06 +01:00
23 lines
275 B
C
23 lines
275 B
C
|
#ifndef ENDPAGE_H
|
||
|
#define ENDPAGE_H
|
||
|
|
||
|
#include <QWizardPage>
|
||
|
|
||
|
namespace Ui {
|
||
|
class EndPage;
|
||
|
}
|
||
|
|
||
|
class EndPage : public QWizardPage
|
||
|
{
|
||
|
Q_OBJECT
|
||
|
|
||
|
public:
|
||
|
explicit EndPage(QWidget *parent = 0);
|
||
|
~EndPage();
|
||
|
|
||
|
private:
|
||
|
Ui::EndPage *ui;
|
||
|
};
|
||
|
|
||
|
#endif // ENDPAGE_H
|