mirror of
https://bitbucket.org/librepilot/librepilot.git
synced 2024-12-14 21:23:52 +01:00
15 lines
313 B
C++
15 lines
313 B
C++
|
#include "opmap_statusbar_widget.h"
|
||
|
#include "ui_opmap_statusbar_widget.h"
|
||
|
|
||
|
opmap_statusbar_widget::opmap_statusbar_widget(QWidget *parent) :
|
||
|
QWidget(parent),
|
||
|
ui(new Ui::opmap_statusbar_widget)
|
||
|
{
|
||
|
ui->setupUi(this);
|
||
|
}
|
||
|
|
||
|
opmap_statusbar_widget::~opmap_statusbar_widget()
|
||
|
{
|
||
|
delete ui;
|
||
|
}
|