22 lines
640 B
C++
22 lines
640 B
C++
#ifndef SILENTNETWORKACCESSMANAGER_H
|
|
#define SILENTNETWORKACCESSMANAGER_H
|
|
|
|
#include "core/basenetworkaccessmanager.h"
|
|
|
|
|
|
// Network manager used for more communication for feeds.
|
|
class SilentNetworkAccessManager : public BaseNetworkAccessManager {
|
|
Q_OBJECT
|
|
|
|
public:
|
|
// Constructors and destructors.
|
|
explicit SilentNetworkAccessManager(QObject *parent = 0);
|
|
virtual ~SilentNetworkAccessManager();
|
|
|
|
protected slots:
|
|
void onSslErrors(QNetworkReply *reply, const QList<QSslError> &error);
|
|
void onAuthenticationRequired(QNetworkReply * reply, QAuthenticator *authenticator);
|
|
};
|
|
|
|
#endif // SILENTNETWORKACCESSMANAGER_H
|