mirror of
https://bitbucket.org/librepilot/librepilot.git
synced 2025-02-04 20:52:10 +01:00
23 lines
291 B
C
23 lines
291 B
C
|
#ifndef STARTPAGE_H
|
||
|
#define STARTPAGE_H
|
||
|
|
||
|
#include <QWizardPage>
|
||
|
|
||
|
namespace Ui {
|
||
|
class StartPage;
|
||
|
}
|
||
|
|
||
|
class StartPage : public QWizardPage
|
||
|
{
|
||
|
Q_OBJECT
|
||
|
|
||
|
public:
|
||
|
explicit StartPage(QWidget *parent = 0);
|
||
|
~StartPage();
|
||
|
|
||
|
private:
|
||
|
Ui::StartPage *ui;
|
||
|
};
|
||
|
|
||
|
#endif // STARTPAGE_H
|