Files
pilotclient/samples/blackgui/flightplanwidget.cpp
Klaus Basan f967ed40ba refs #212, flightplan GUI
* 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
2014-04-28 20:35:59 +02:00

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;
}
}