mirror of
https://github.com/RetroShare/RetroShare.git
synced 2024-10-01 02:35:48 -04:00
28 lines
489 B
C
28 lines
489 B
C
|
#ifndef _STEGOSAURUS_PLUGIN_H_
|
||
|
#define _STEGOSAURUS_PLUGIN_H_
|
||
|
|
||
|
#include <QObject>
|
||
|
|
||
|
#include <QString>
|
||
|
#include <QWidget>
|
||
|
|
||
|
#include <PluginInterface.h>
|
||
|
|
||
|
#include <QDebug>
|
||
|
|
||
|
class StegoSaurusPlugin: public QObject, public PluginInterface
|
||
|
{
|
||
|
Q_OBJECT
|
||
|
Q_INTERFACES(PluginInterface)
|
||
|
|
||
|
public slots:
|
||
|
|
||
|
virtual QString pluginDescription() const ;
|
||
|
virtual QString pluginName() const ;
|
||
|
|
||
|
virtual QWidget* pluginWidget(QWidget * parent = 0) ;
|
||
|
|
||
|
};
|
||
|
|
||
|
#endif
|