blob: 634d051dbf48f8b4ab0cb6dd5a0b3c60d1debb31 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
#ifndef MASTODONSHAREPLUGIN_H
#define MASTODONSHAREPLUGIN_H
#include <QtCore/QObject>
#include <sharingplugininterface.h>
class Q_DECL_EXPORT MastodonSharePlugin : public QObject, public SharingPluginInterface
{
Q_OBJECT
Q_PLUGIN_METADATA(IID "org.sailfishos.share.plugin.mastodon")
Q_INTERFACES(SharingPluginInterface)
public:
MastodonSharePlugin();
~MastodonSharePlugin();
SharingPluginInfo *infoObject();
QString pluginId() const;
};
#endif // MASTODONSHAREPLUGIN_H
|