1
0
mirror of https://bitbucket.org/librepilot/librepilot.git synced 2024-12-16 23:23:50 +01:00
LibrePilot/ground/src/plugins/map/mapgadget.cpp

22 lines
327 B
C++
Raw Normal View History

/*
* 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()
{
}