File indexing completed on 2024-05-12 05:22:24

0001 /*
0002  * This file is part of LibKGAPI library
0003  *
0004  * SPDX-FileCopyrightText: 2019 David Barchiesi <david@barchie.si>
0005  *
0006  * SPDX-License-Identifier: LGPL-2.1-only OR LGPL-3.0-only OR LicenseRef-KDE-Accepted-LGPL
0007  */
0008 
0009 #pragma once
0010 
0011 #include "kgapidrive_export.h"
0012 #include "modifyjob.h"
0013 
0014 namespace KGAPI2
0015 {
0016 
0017 namespace Drive
0018 {
0019 
0020 class KGAPIDRIVE_DEPRECATED_EXPORT TeamdriveModifyJob : public KGAPI2::ModifyJob
0021 {
0022     Q_OBJECT
0023 
0024 public:
0025     explicit TeamdriveModifyJob(const TeamdrivePtr &teamdrive, const AccountPtr &account, QObject *parent = nullptr);
0026     explicit TeamdriveModifyJob(const TeamdrivesList &teamdrives, const AccountPtr &account, QObject *parent = nullptr);
0027     ~TeamdriveModifyJob() override;
0028 
0029 protected:
0030     void start() override;
0031     KGAPI2::ObjectsList handleReplyWithItems(const QNetworkReply *reply, const QByteArray &rawData) override;
0032 
0033 private:
0034     class Private;
0035     QScopedPointer<Private> d;
0036     friend class Private;
0037 };
0038 
0039 } // namespace Drive
0040 
0041 } // namespace KGAPI2