MidlePayQml 0.0.4
MiddlePay QML module
All Classes Namespaces Functions Variables Typedefs Enumerations Enumerator Properties Friends Pages
qnode_response.hpp
1 #pragma once
2 
3 #include <QNetworkReply>
4 #include <QJsonValue>
5 #include <QtCore/QtGlobal>
6 
7 #if defined(WINDOWS_QCLIENT)
8 # define QCLIENT_EXPORT Q_DECL_EXPORT
9 #else
10 #define QCLIENT_EXPORT Q_DECL_IMPORT
11 #endif
12 
13 namespace qiota{
14 
15 
16  class QCLIENT_EXPORT Response: public QObject
17  {
18  Q_OBJECT
19  public:
20  Response(QNetworkReply *thereply);
21  void fill();
23  signals:
24  void returned( QJsonValue data );
25  private:
26  QNetworkReply *reply;
27 
28  };
29 
30 
31 
32 }
Definition: qnode_response.hpp:17
void error_found(QNetworkReply::NetworkError code)
Response(QNetworkReply *thereply)
void returned(QJsonValue data)
Definition: qbigint.hpp:7