#ifndef MASTODONPLUGININFO_H #define MASTODONPLUGININFO_H #include #include class MastodonShareServiceStatus; class MastodonPluginInfo : public SharingPluginInfo { Q_OBJECT public: MastodonPluginInfo(); ~MastodonPluginInfo(); QList info() const; void query(); private Q_SLOTS: void serviceReady(); private: MastodonShareServiceStatus *m_mastodonShareServiceStatus; QList m_info; QStringList m_capabilities; }; #endif // MASTODONPLUGININFO_H