2019-10-08 18:28:25 +02:00

26 lines
311 B
C++

#ifndef RESPONSE_H
#define RESPONSE_H
#include <QObject>
#include <qnetworkreply.h>
class Response : public QObject
{
Q_OBJECT
public:
Response();
public:
QNetworkReply *reply = nullptr;
signals:
void finished();
public slots:
private:
};
#endif // RESPONSE_H