mirror of
https://bitbucket.org/librepilot/librepilot.git
synced 2024-12-16 23:23:50 +01:00
7c860c19c1
git-svn-id: svn://svn.openpilot.org/OpenPilot/trunk@395 ebee16cc-31ac-478f-84a7-5cbb03baadba
28 lines
547 B
C++
28 lines
547 B
C++
/*
|
|
* 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_
|