forked from jeena/FeedTheMonkey
25 lines
454 B
C++
25 lines
454 B
C++
#ifndef TINYTINYRSS_H
|
|
#define TINYTINYRSS_H
|
|
|
|
#include <QObject>
|
|
#include <QQuickItem>
|
|
#include <QMap>
|
|
#include <QNetworkReply>
|
|
|
|
class TinyTinyRSS : QObject
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
TinyTinyRSS(QString serverUrl, QString sessionId);
|
|
~TinyTinyRSS();
|
|
|
|
private:
|
|
QString serverUrl;
|
|
QString sessionId;
|
|
|
|
void doOperation(QString operation, QVariantMap opts);
|
|
void replyFinishedOperation(QNetworkReply *reply);
|
|
};
|
|
|
|
#endif // TINYTINYRSS_H
|