mirror of
https://github.com/RetroShare/RetroShare.git
synced 2025-08-13 16:45:49 -04:00
forget to add this
git-svn-id: http://svn.code.sf.net/p/retroshare/code/trunk@4242 b45a01b8-16f6-495d-af2f-9b41ad6348cc
This commit is contained in:
parent
ccb9699f81
commit
67fcb01573
9 changed files with 2312 additions and 0 deletions
27
plugins/linkscloud_plugin/LinksPlugin.h
Normal file
27
plugins/linkscloud_plugin/LinksPlugin.h
Normal file
|
@ -0,0 +1,27 @@
|
|||
#ifndef _LC_PLUGIN_H_
|
||||
#define _LC_PLUGIN_H_
|
||||
|
||||
#include <QObject>
|
||||
|
||||
#include <QString>
|
||||
#include <QWidget>
|
||||
|
||||
#include <PluginInterface.h>
|
||||
|
||||
#include <QDebug>
|
||||
|
||||
class LinksPlugin: 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
|
Loading…
Add table
Add a link
Reference in a new issue