blob: 28eb4794d1b6ac67272b33c8b5cc60ce80b75707 (
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
|
#ifndef MASTODONPLUGININFO_H
#define MASTODONPLUGININFO_H
#include <sharingplugininfo.h>
#include <QStringList>
class MastodonShareServiceStatus;
class MastodonPluginInfo : public SharingPluginInfo
{
Q_OBJECT
public:
MastodonPluginInfo();
~MastodonPluginInfo();
QList<SharingMethodInfo> info() const;
void query();
private Q_SLOTS:
void serviceReady();
private:
MastodonShareServiceStatus *m_mastodonShareServiceStatus;
QList<SharingMethodInfo> m_info;
QStringList m_capabilities;
};
#endif // MASTODONPLUGININFO_H
|