mirror of
https://github.com/swift-project/pilotclient.git
synced 2026-03-22 23:05:36 +08:00
* similar to http://www.vatsim.net/fp/ * own form, own widget class as a trial to further modularize GUI components * removed all view models (now encapsulated) * tweaked style sheet
18 lines
324 B
C++
18 lines
324 B
C++
#include "flightplanwidget.h"
|
|
#include "ui_flightplanwidget.h"
|
|
|
|
namespace BlackGui
|
|
{
|
|
CFlightplanWidget::CFlightplanWidget(QWidget *parent) :
|
|
QFrame(parent),
|
|
ui(new Ui::CFlightplanWidget)
|
|
{
|
|
ui->setupUi(this);
|
|
}
|
|
|
|
CFlightplanWidget::~CFlightplanWidget()
|
|
{
|
|
delete ui;
|
|
}
|
|
}
|