mirror of
https://bitbucket.org/librepilot/librepilot.git
synced 2025-02-01 17:52:12 +01:00
15 lines
299 B
C++
15 lines
299 B
C++
|
#include "opmap_overlay_widget.h"
|
||
|
#include "ui_opmap_overlay_widget.h"
|
||
|
|
||
|
opmap_overlay_widget::opmap_overlay_widget(QWidget *parent) :
|
||
|
QWidget(parent),
|
||
|
ui(new Ui::opmap_overlay_widget)
|
||
|
{
|
||
|
ui->setupUi(this);
|
||
|
}
|
||
|
|
||
|
opmap_overlay_widget::~opmap_overlay_widget()
|
||
|
{
|
||
|
delete ui;
|
||
|
}
|