1
0
mirror of https://bitbucket.org/librepilot/librepilot.git synced 2024-12-14 21:23:52 +01:00
LibrePilot/ground/src/plugins/opmap/opmap_statusbar_widget.cpp

15 lines
313 B
C++
Raw Normal View History

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