File indexing completed on 2024-04-28 04:55:43

0001 /*
0002     This file is part of Choqok, the KDE micro-blogging client
0003 
0004     SPDX-FileCopyrightText: 2016 Andrea Scarpino <scarpino@kde.org>
0005 
0006     SPDX-License-Identifier: GPL-2.0-only OR GPL-3.0-only OR LicenseRef-KDE-Accepted-GPL
0007 */
0008 
0009 #ifndef FRIENDICAMICROBLOGPLUGIN_H
0010 #define FRIENDICAMICROBLOGPLUGIN_H
0011 
0012 #include "gnusocialapimicroblog.h"
0013 
0014 class ChoqokEditAccountWidget;
0015 
0016 class FriendicaMicroBlog : public GNUSocialApiMicroBlog
0017 {
0018     Q_OBJECT
0019 public:
0020     FriendicaMicroBlog(QObject *parent, const QVariantList &args);
0021     ~FriendicaMicroBlog();
0022 
0023     virtual ChoqokEditAccountWidget *createEditAccountWidget(Choqok::Account *account, QWidget *parent) override;
0024     virtual QUrl profileUrl(Choqok::Account *account, const QString &username) const override;
0025 
0026 };
0027 
0028 #endif