diff options
Diffstat (limited to 'src/modules/objects/class_http.h')
| -rw-r--r-- | src/modules/objects/class_http.h | 26 |
1 files changed, 14 insertions, 12 deletions
diff --git a/src/modules/objects/class_http.h b/src/modules/objects/class_http.h index 197250117..9430c194d 100644 --- a/src/modules/objects/class_http.h +++ b/src/modules/objects/class_http.h @@ -30,6 +30,8 @@ #include <QHttp> #include <QFile> #include <QHash> +#include <QSslError> + class KviKvsObject_http : public KviKvsObject { Q_OBJECT @@ -65,19 +67,19 @@ protected: #endif protected slots: - void slotRequestFinished ( int id, bool error );
- void slotDone (bool error );
- void slotRequestStarted ( int id );
- void slotDataSendProgress ( int done, int total );
- void slotDataReadProgress ( int done, int total );
+ void slotRequestFinished ( int id, bool error ); + void slotDone (bool error ); + void slotRequestStarted ( int id ); + void slotDataSendProgress ( int done, int total ); + void slotDataReadProgress ( int done, int total ); #ifndef QT_NO_OPENSSL - void slotSslErrors(QList<QSslError>);
-#endif
- void slotResponseHeaderReceived(const QHttpResponseHeader &r);
- void slotReadyRead(const QHttpResponseHeader &r);
- void slotStateChanged ( int state);
-
-
+ void slotSslErrors(QList<QSslError>); +#endif + void slotResponseHeaderReceived(const QHttpResponseHeader &r); + void slotReadyRead(const QHttpResponseHeader &r); + void slotStateChanged ( int state); + + }; #endif //_CLASS_HTTP_H_ |
