1
0
mirror of https://bitbucket.org/librepilot/librepilot.git synced 2024-12-16 23:23:50 +01:00
LibrePilot/ground/src/plugins/scope/scopegadgetfactory.h

28 lines
547 B
C
Raw Normal View History

/*
* scopegadgetfactory.h
*
* Created on: Mar 6, 2010
* Author: peter
*/
#ifndef SCOPEGADGETFACTORY_H_
#define SCOPEGADGETFACTORY_H_
#include <coreplugin/iuavgadgetfactory.h>
using namespace Core;
class IUAVGadget;
class IUAVGadgetFactory;
class ScopeGadgetFactory : public Core::IUAVGadgetFactory
{
Q_OBJECT
public:
ScopeGadgetFactory(QObject *parent = 0);
~ScopeGadgetFactory();
Core::IUAVGadget *createGadget(QList<IUAVGadgetConfiguration*> *configurations, QWidget *parent);
};
#endif // SCOPEGADGETFACTORY_H_