forked from ondra/colnod-connector
26 lines
311 B
C++
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
|