From 4351f4627ba9e71775438dd26c9acddd002c7e11 Mon Sep 17 00:00:00 2001 From: Andrew Branson Date: Tue, 10 Feb 2026 10:41:02 +0100 Subject: Initial commit --- .../mastodonshareplugin/mastodonshareplugin.cpp | 23 ++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 transferengine-plugins/mastodonshareplugin/mastodonshareplugin.cpp (limited to 'transferengine-plugins/mastodonshareplugin/mastodonshareplugin.cpp') diff --git a/transferengine-plugins/mastodonshareplugin/mastodonshareplugin.cpp b/transferengine-plugins/mastodonshareplugin/mastodonshareplugin.cpp new file mode 100644 index 0000000..ec7a732 --- /dev/null +++ b/transferengine-plugins/mastodonshareplugin/mastodonshareplugin.cpp @@ -0,0 +1,23 @@ +#include "mastodonshareplugin.h" +#include "mastodonplugininfo.h" + +#include + +MastodonSharePlugin::MastodonSharePlugin() + : QObject(), SharingPluginInterface() +{ +} + +MastodonSharePlugin::~MastodonSharePlugin() +{ +} + +SharingPluginInfo *MastodonSharePlugin::infoObject() +{ + return new MastodonPluginInfo; +} + +QString MastodonSharePlugin::pluginId() const +{ + return QLatin1String("Mastodon"); +} -- cgit v1.2.3