Kgapi

personcreatejob.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 "createjob.h"
12#include "kgapipeople_export.h"
13
14namespace KGAPI2::People
15{
16
17class KGAPIPEOPLE_EXPORT PersonCreateJob : public KGAPI2::CreateJob
18{
19 Q_OBJECT
20
21public:
22 explicit PersonCreateJob(const PersonPtr &person, const AccountPtr &account, QObject* parent = nullptr);
23 explicit PersonCreateJob(const PersonList &people, const AccountPtr &account, QObject* parent = nullptr);
24 ~PersonCreateJob();
25
26protected:
27 void start() override;
28
29 ObjectsList handleReplyWithItems(const QNetworkReply *reply,
30 const QByteArray &rawData) override;
31
32private:
33 class Private;
34 std::unique_ptr<Private> d;
35 friend class Private;
36};
37
38}
Abstract superclass for all jobs that create new objects on the server.
Definition createjob.h:26
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.