Browse Source
disabled for the next release. Signed-off-by: Blagovest Petrov <blagovest@petrovs.info>pull/14/head
10 changed files with 52 additions and 34 deletions
After Width: | Height: | Size: 8.9 KiB |
After Width: | Height: | Size: 34 KiB |
After Width: | Height: | Size: 26 KiB |
@ -1,15 +1,15 @@ |
|||
#include "fetchshowid.h" |
|||
#include <QNetworkAccessManager> |
|||
#include <QObject> |
|||
#include <QDebug> |
|||
#include <QString> |
|||
|
|||
FetchShowID::FetchShowID() |
|||
{ |
|||
n_manager = new QNetworkAccessManager; |
|||
|
|||
connect(n_manager, SIGNAL(finished(QNetworkReply*)), |
|||
this, SLOT(replyFinished(QNetworkReply*))); |
|||
|
|||
} |
|||
|
|||
//int FetchShowID::Fetch() {
|
|||
// QNetworkAccessManager *manager = new QNetworkAccessManager(this);
|
|||
|
|||
//}
|
|||
void FetchShowID::Fetch() { |
|||
n_manager->get(QNetworkRequest(QUrl("http://app.radiotangra.com/TMR_monitor_songs"))); |
|||
} |
|||
|
@ -1,12 +1,20 @@ |
|||
#ifndef FETCHSHOWID_H |
|||
#define FETCHSHOWID_H |
|||
#include <QNetworkAccessManager> |
|||
#include <QNetworkReply> |
|||
#include <QObject> |
|||
#include <QDebug> |
|||
#include <QString> |
|||
|
|||
|
|||
class FetchShowID |
|||
class FetchShowID : public QObject |
|||
{ |
|||
public: |
|||
FetchShowID(); |
|||
// int Fetch();
|
|||
void Fetch(); |
|||
|
|||
private: |
|||
QNetworkAccessManager* n_manager; |
|||
}; |
|||
|
|||
#endif // FETCHSHOWID_H
|
|||
|
Loading…
Reference in new issue