mirror of
https://github.com/RetroShare/RetroShare.git
synced 2024-10-01 02:35:48 -04:00
67fcb01573
git-svn-id: http://svn.code.sf.net/p/retroshare/code/trunk@4242 b45a01b8-16f6-495d-af2f-9b41ad6348cc
33 lines
496 B
C++
33 lines
496 B
C++
//#include <QApplication>
|
|
//#include <QString>
|
|
//#include <QPushButton>
|
|
|
|
#include "LinksPlugin.h"
|
|
#include "LinksDialog.h"
|
|
|
|
QString
|
|
LinksPlugin::pluginDescription() const
|
|
{
|
|
QString res;
|
|
res = "Links Cloud plugin" ;
|
|
|
|
return res;
|
|
}
|
|
|
|
QString
|
|
LinksPlugin::pluginName() const
|
|
{
|
|
return "Links Cloud" ;
|
|
}
|
|
|
|
QWidget*
|
|
LinksPlugin::pluginWidget(QWidget * parent )
|
|
{
|
|
LinksDialog* window = new LinksDialog(parent);
|
|
|
|
return window;
|
|
}
|
|
|
|
|
|
Q_EXPORT_PLUGIN2(linkscloud_plugin, LinksPlugin)
|