blob: 8c139a2f8de32234d64ef91b52e715ec555bdf94 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
/*
* SPDX-FileCopyrightText: 2013 - 2026 Jolla Ltd.
*
* SPDX-License-Identifier: BSD-3-Clause
*/
#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");
}
|