blob: ec7a732659f1b834eba3ce7b837df975845d127f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
#include "mastodonshareplugin.h"
#include "mastodonplugininfo.h"
#include <QtPlugin>
MastodonSharePlugin::MastodonSharePlugin()
: QObject(), SharingPluginInterface()
{
}
MastodonSharePlugin::~MastodonSharePlugin()
{
}
SharingPluginInfo *MastodonSharePlugin::infoObject()
{
return new MastodonPluginInfo;
}
QString MastodonSharePlugin::pluginId() const
{
return QLatin1String("Mastodon");
}
|