You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
522 B
24 lines
522 B
4 years ago
|
#include "fetchshowid.h"
|
||
|
#include <QNetworkAccessManager>
|
||
|
#include <QObject>
|
||
|
#include <QDebug>
|
||
|
#include <QString>
|
||
|
|
||
|
FetchShowID::FetchShowID()
|
||
|
{
|
||
|
|
||
|
}
|
||
|
|
||
|
//int FetchShowID::Fetch() {
|
||
|
// QNetworkAccessManager *manager = new QNetworkAccessManager(this);
|
||
|
// QObject::connect(manager, &QNetworkAccessManager::finished, this, [=](QNetworkReply *reply) {
|
||
|
// if (reply->error()) {
|
||
|
// qDebug() << reply->errorString();
|
||
|
// return;
|
||
|
// }
|
||
|
|
||
|
// QString answer = reply->readAll();
|
||
|
|
||
|
// }
|
||
|
//}
|