1
0
mirror of https://bitbucket.org/librepilot/librepilot.git synced 2025-01-20 05:52:11 +01:00
LibrePilot/ground/src/plugins/scope/scopegadget.cpp
ephy 35f4fc06a0 GCS/core+gadgets: Second attempt at cleanup of uav gadget interface.
git-svn-id: svn://svn.openpilot.org/OpenPilot/trunk@400 ebee16cc-31ac-478f-84a7-5cbb03baadba
2010-03-27 19:24:21 +00:00

20 lines
325 B
C++

/*
* scopegadget.cpp
*
* Created on: Mar 11, 2010
* Author: peter
*/
#include "scopegadget.h"
#include "scopegadgetwidget.h"
ScopeGadget::ScopeGadget(QString classId, ScopeGadgetWidget *widget, QWidget *parent) :
IUAVGadget(classId, parent),
m_widget(widget)
{
}
ScopeGadget::~ScopeGadget()
{
}