mirror of
https://bitbucket.org/librepilot/librepilot.git
synced 2025-01-09 20:46:07 +01:00
22 lines
343 B
C++
22 lines
343 B
C++
|
/*
|
||
|
* 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())
|
||
|
{
|
||
|
}
|
||
|
|
||
|
ScopeGadget::~ScopeGadget()
|
||
|
{
|
||
|
|
||
|
}
|