1
0
mirror of https://bitbucket.org/librepilot/librepilot.git synced 2025-01-26 11:52:10 +01:00

22 lines
343 B
C++
Raw Normal View History

/*
* emptygadget.cpp
*
* Created on: Mar 11, 2010
* Author: peter
*/
#include "emptygadget.h"
#include "emptygadgetwidget.h"
#include <QtGui/QToolBar>
EmptyGadget::EmptyGadget(EmptyGadgetWidget *widget) :
IUAVGadget(widget),
m_widget(widget),
m_toolbar(new QToolBar())
{
}
EmptyGadget::~EmptyGadget()
{
}