mirror of
https://bitbucket.org/librepilot/librepilot.git
synced 2025-01-10 20:52:11 +01:00
15 lines
212 B
C++
15 lines
212 B
C++
|
#include "startpage.h"
|
||
|
#include "ui_startpage.h"
|
||
|
|
||
|
StartPage::StartPage(QWidget *parent) :
|
||
|
QWizardPage(parent),
|
||
|
ui(new Ui::StartPage)
|
||
|
{
|
||
|
ui->setupUi(this);
|
||
|
}
|
||
|
|
||
|
StartPage::~StartPage()
|
||
|
{
|
||
|
delete ui;
|
||
|
}
|