mirror of
https://github.com/nextcloud/desktop.git
synced 2024-12-22 13:44:34 +03:00
36 lines
940 B
C
36 lines
940 B
C
|
/*
|
||
|
* Copyright (C) by Krzesimir Nowak <krzesimir@endocode.com>
|
||
|
*
|
||
|
* This program is free software; you can redistribute it and/or modify
|
||
|
* it under the terms of the GNU General Public License as published by
|
||
|
* the Free Software Foundation; version 2 of the License.
|
||
|
*
|
||
|
* This program is distributed in the hope that it will be useful, but
|
||
|
* WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
|
||
|
* or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
||
|
* for more details.
|
||
|
*/
|
||
|
|
||
|
#ifndef MIRALL_ACCESS_MANAGER_H
|
||
|
#define MIRALL_ACCESS_MANAGER_H
|
||
|
|
||
|
#include <QNetworkAccessManager>
|
||
|
|
||
|
namespace Mirall
|
||
|
{
|
||
|
|
||
|
class MirallAccessManager : public QNetworkAccessManager
|
||
|
{
|
||
|
Q_OBJECT
|
||
|
|
||
|
public:
|
||
|
MirallAccessManager(QObject* parent = 0);
|
||
|
|
||
|
protected:
|
||
|
QNetworkReply* createRequest(QNetworkAccessManager::Operation op, const QNetworkRequest& request, QIODevice* outgoingData = 0);
|
||
|
};
|
||
|
|
||
|
} // ns Mirall
|
||
|
|
||
|
#endif
|