aboutsummaryrefslogtreecommitdiff
path: root/lib/networkaccessmanager.h
diff options
context:
space:
mode:
authorMarc Deop <marc@marcdeop.com>2019-03-02 12:26:57 +0100
committerMarc Deop <marc@marcdeop.com>2019-03-02 12:26:57 +0100
commitaacc4bcb4a487871daae6717f77605aaba444341 (patch)
tree4f50b6874821667ccb6b91c017e5d041e3846112 /lib/networkaccessmanager.h
parentc971b924cd62822ed6fb1a0291c483ae73a3ecda (diff)
downloadlibquotient-aacc4bcb4a487871daae6717f77605aaba444341.tar.gz
libquotient-aacc4bcb4a487871daae6717f77605aaba444341.zip
style: apply .clang-format to all .cpp and .h files
Diffstat (limited to 'lib/networkaccessmanager.h')
-rw-r--r--lib/networkaccessmanager.h31
1 files changed, 15 insertions, 16 deletions
diff --git a/lib/networkaccessmanager.h b/lib/networkaccessmanager.h
index ae847582..ebaaa5b2 100644
--- a/lib/networkaccessmanager.h
+++ b/lib/networkaccessmanager.h
@@ -13,7 +13,7 @@
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
- * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
#pragma once
@@ -22,28 +22,27 @@
#include <memory>
-namespace QMatrixClient
-{
+namespace QMatrixClient {
class NetworkAccessManager : public QNetworkAccessManager
{
- Q_OBJECT
+ Q_OBJECT
public:
- NetworkAccessManager(QObject* parent = nullptr);
- ~NetworkAccessManager() override;
+ NetworkAccessManager(QObject* parent = nullptr);
+ ~NetworkAccessManager() override;
- QList<QSslError> ignoredSslErrors() const;
- void addIgnoredSslError(const QSslError& error);
- void clearIgnoredSslErrors();
+ QList<QSslError> ignoredSslErrors() const;
+ void addIgnoredSslError(const QSslError& error);
+ void clearIgnoredSslErrors();
- /** Get a pointer to the singleton */
- static NetworkAccessManager* instance();
+ /** Get a pointer to the singleton */
+ static NetworkAccessManager* instance();
private:
- QNetworkReply * createRequest(Operation op,
- const QNetworkRequest &request,
- QIODevice *outgoingData = Q_NULLPTR) override;
+ QNetworkReply*
+ createRequest(Operation op, const QNetworkRequest& request,
+ QIODevice* outgoingData = Q_NULLPTR) override;
- class Private;
- std::unique_ptr<Private> d;
+ class Private;
+ std::unique_ptr<Private> d;
};
} // namespace QMatrixClient