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

0001 /*
0002  * This file is part of LibKGAPI library
0003  *
0004  * SPDX-FileCopyrightText: 2013 Daniel Vrátil <dvratil@redhat.com>
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_EXPORT RevisionModifyJob : public KGAPI2::ModifyJob
0021 {
0022     Q_OBJECT
0023 
0024 public:
0025     explicit RevisionModifyJob(const QString &fileId, const RevisionPtr &revision, const AccountPtr &account, QObject *parent = nullptr);
0026     explicit RevisionModifyJob(const QString &fileId, const RevisionsList &revisions, const AccountPtr &account, QObject *parent = nullptr);
0027     ~RevisionModifyJob() 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     Private *const d;
0036     friend class Private;
0037 };
0038 
0039 } // namespace Drive
0040 
0041 } // namespace KGAPI2