mirror of
https://bitbucket.org/librepilot/librepilot.git
synced 2024-12-16 23:23:50 +01:00
22 lines
327 B
C++
22 lines
327 B
C++
|
/*
|
||
|
* mapgadget.cpp
|
||
|
*
|
||
|
* Created on: Mar 11, 2010
|
||
|
* Author: peter
|
||
|
*/
|
||
|
#include "mapgadget.h"
|
||
|
#include "mapgadgetwidget.h"
|
||
|
#include <QtGui/QToolBar>
|
||
|
|
||
|
MapGadget::MapGadget(MapGadgetWidget *widget) :
|
||
|
IUAVGadget(widget),
|
||
|
m_widget(widget),
|
||
|
m_toolbar(new QToolBar())
|
||
|
{
|
||
|
}
|
||
|
|
||
|
MapGadget::~MapGadget()
|
||
|
{
|
||
|
|
||
|
}
|