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

28 lines
489 B
C
Raw Normal View History

/*
* scopeplugin.h
*
* Created on: Mar 6, 2010
* Author: peter
*/
#ifndef SCOPEPLUGIN_H_
#define SCOPEPLUGIN_H_
#include <extensionsystem/iplugin.h>
class ScopeGadgetFactory;
class ScopePlugin : public ExtensionSystem::IPlugin
{
public:
ScopePlugin();
~ScopePlugin();
void extensionsInitialized();
bool initialize(const QStringList & arguments, QString * errorString);
void shutdown();
private:
ScopeGadgetFactory *mf;
};
#endif /* SCOPEPLUGIN_H_ */