1
0
mirror of https://bitbucket.org/librepilot/librepilot.git synced 2025-01-09 20:46:07 +01:00
LibrePilot/ground/src/plugins/scope/scopegadget.cpp

23 lines
386 B
C++
Raw Normal View History

/*
* scopegadget.cpp
*
* Created on: Mar 11, 2010
* Author: peter
*/
#include "scopegadget.h"
#include "scopegadgetwidget.h"
#include <QtGui/QToolBar>
ScopeGadget::ScopeGadget(ScopeGadgetWidget *widget) :
IUAVGadget(widget),
m_widget(widget),
m_toolbar(new QToolBar())
{
m_gadgetKind = QString("ScopeGadget");
}
ScopeGadget::~ScopeGadget()
{
}