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