1/*
2 This file is part of KDE.
3
4 SPDX-FileCopyrightText: 2009 Eckhart Wörner <ewoerner@kde.org>
5
6 SPDX-License-Identifier: LGPL-2.1-only OR LGPL-3.0-only OR LicenseRef-KDE-Accepted-LGPL
7*/
8
9#ifndef ATTICA_GETJOB_H
10#define ATTICA_GETJOB_H
11
12#include <QNetworkRequest>
13
14#include "attica_export.h"
15#include "atticabasejob.h"
16
17namespace Attica
18{
19
20/*!
21 * \class Attica::GetJob
22 * \inheaderfile Attica/GetJob
23 * \inmodule Attica
24 *
25 * \brief Represents a get job.
26 */
27class ATTICA_EXPORT GetJob : public Attica::BaseJob
28{
29 Q_OBJECT
30
31protected:
32 GetJob(PlatformDependent *internals, const QNetworkRequest &request);
33
34private:
35 QNetworkReply *executeRequest() override;
36 const QNetworkRequest m_request;
37};
38
39}
40
41#endif
42

source code of attica/src/getjob.h