1
0
mirror of https://bitbucket.org/librepilot/librepilot.git synced 2025-01-27 12:52:11 +01:00
2010-03-19 17:29:28 +00:00

22 lines
343 B
C++

/*
* 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()
{
}