summaryrefslogtreecommitdiff
path: root/transferengine-plugins/mastodonshareplugin/mastodonshareplugin.cpp
blob: 0666080ea464ececdbe070709c591b6c3438fd15 (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
/*
 * Copyright (C) 2013-2026 Jolla Ltd.
 */

#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");
}