Kgapi

persondeletejob.h
1/*
2 * This file is part of LibKGAPI library
3 *
4 * SPDX-FileCopyrightText: 2023 Claudio Cambra <claudio.cambra@kde.org>
5 *
6 * SPDX-License-Identifier: LGPL-2.1-only OR LGPL-3.0-only OR LicenseRef-KDE-Accepted-LGPL
7 */
8
9#pragma once
10
11#include "deletejob.h"
12#include "kgapipeople_export.h"
13
14namespace KGAPI2::People
15{
16
17class KGAPIPEOPLE_EXPORT PersonDeleteJob : public KGAPI2::DeleteJob
18{
19 Q_OBJECT
20
21public:
22 explicit PersonDeleteJob(const QString &personResourceName, const AccountPtr &account, QObject* parent = nullptr);
23 explicit PersonDeleteJob(const QStringList &peopleResourceName, const AccountPtr &account, QObject* parent = nullptr);
24 explicit PersonDeleteJob(const PersonPtr &person, const AccountPtr &account, QObject* parent = nullptr);
25 explicit PersonDeleteJob(const PersonList &people, const AccountPtr &account, QObject* parent = nullptr);
26 ~PersonDeleteJob();
27
28protected:
29 void start() override;
30
31 void handleReply(const QNetworkReply *reply,
32 const QByteArray &rawData) override;
33
34private:
35 class Private;
36 std::unique_ptr<Private> d;
37 friend class Private;
38};
39
40}
Abstract superclass for all jobs that delete resources from Google.
Definition deletejob.h:25
Q_SCRIPTABLE Q_NOREPLY void start()
This file is part of the KDE documentation.
Documentation copyright © 1996-2024 The KDE developers.
Generated on Fri May 3 2024 11:50:41 by doxygen 1.10.0 written by Dimitri van Heesch, © 1997-2006

KDE's Doxygen guidelines are available online.