mirror of
https://bitbucket.org/librepilot/librepilot.git
synced 2025-01-20 05:52:11 +01:00
35f4fc06a0
git-svn-id: svn://svn.openpilot.org/OpenPilot/trunk@400 ebee16cc-31ac-478f-84a7-5cbb03baadba
20 lines
325 B
C++
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()
|
|
{
|
|
|
|
}
|