Attica

platformdependent_v2.h
1/*
2 This file is part of KDE.
3
4 SPDX-FileCopyrightText: 2011 Laszlo Papp <djszapi@archlinux.us>
5
6 SPDX-License-Identifier: LGPL-2.1-only OR LGPL-3.0-only OR LicenseRef-KDE-Accepted-LGPL
7*/
8
9#ifndef ATTICA_PLATFORMDEPENDENT_V2_H
10#define ATTICA_PLATFORMDEPENDENT_V2_H
11
12#include <QList>
13#include <QtPlugin>
14
15#include <platformdependent.h>
16
17class QByteArray;
18class QIODevice;
20class QNetworkReply;
21class QNetworkRequest;
22class QString;
23class QUrl;
24
25namespace Attica
26{
27class PlatformDependentV2 : public PlatformDependent
28{
29public:
30 ~PlatformDependentV2() override;
31 virtual QNetworkReply *deleteResource(const QNetworkRequest &request) = 0;
32 virtual QNetworkReply *put(const QNetworkRequest &request, QIODevice *data) = 0;
33 virtual QNetworkReply *put(const QNetworkRequest &request, const QByteArray &data) = 0;
34};
35
36}
37
38Q_DECLARE_INTERFACE(Attica::PlatformDependentV2, "org.kde.Attica.InternalsV2/1.2")
39
40#endif
The Attica namespace,.
This file is part of the KDE documentation.
Documentation copyright © 1996-2024 The KDE developers.
Generated on Tue Mar 26 2024 11:19:48 by doxygen 1.10.0 written by Dimitri van Heesch, © 1997-2006

KDE's Doxygen guidelines are available online.