Qx v0.5.7
Qt Extensions Library
Loading...
Searching...
No Matches
qx-networkreplyerror.h
1#ifndef QX_NETWORKREPLYERROR_H
2#define QX_NETWORKREPLYERROR_H
3
4// Shared Lib Support
5#include "qx/network/qx_network_export.h"
6
7// Qt Includes
8#include <QNetworkReply>
9#include <QUrl>
10#include <QString>
11
12namespace Qx
13{
14
15class QX_NETWORK_EXPORT NetworkReplyError
16{
17//-Instance Members----------------------------------------------------------------------------------------------
18private:
20 QUrl mUrl;
21 QString mErrorText;
22
23//-Constructor---------------------------------------------------------------------------------------------------
24public:
27
28//-Instance Functions--------------------------------------------------------------------------------------------
29public:
30 bool isValid();
32 QUrl url();
33 QString text();
34};
35
36}
37
38#endif // QX_NETWORKREPLYERROR_H
The NetworkReplyError class provides a full error object for QNetworkReply, similar to other Qt class...
Definition qx-networkreplyerror.h:16
The Qx namespace is the main namespace through which all non-global functionality of the Qx library i...
Definition qx-processwaiter.cpp:5