forked from jeena/FeedTheMonkey
new ttrss stuff
This commit is contained in:
parent
87585b44ec
commit
307b8ffae0
8 changed files with 176 additions and 22 deletions
25
tinytinyrss.h
Normal file
25
tinytinyrss.h
Normal file
|
@ -0,0 +1,25 @@
|
|||
#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
|
Loading…
Add table
Add a link
Reference in a new issue