This commit is contained in:
Jeena 2015-01-09 06:25:23 +01:00
parent 307b8ffae0
commit 9bbc88eca7
5 changed files with 81 additions and 6 deletions

20
tinytinyrsslogin.h Normal file
View file

@ -0,0 +1,20 @@
#ifndef TINYTINYRSSLOGIN_H
#define TINYTINYRSSLOGIN_H
#include <QObject>
class TinyTinyRSSLogin : public QObject
{
Q_OBJECT
public:
explicit TinyTinyRSSLogin(QObject *parent = 0);
login(QString serverUrl, QString user, QString password);
signals:
replyLogin(QNetworkReply reply);
public slots:
};
#endif // TINYTINYRSSLOGIN_H