File indexing completed on 2024-12-01 04:48:04

0001 /*
0002     This file is part of oxaccess.
0003 
0004     SPDX-FileCopyrightText: 2009 Tobias Koenig <tokoe@kde.org>
0005 
0006     SPDX-License-Identifier: LGPL-2.0-or-later
0007 */
0008 
0009 #pragma once
0010 
0011 #include "object.h"
0012 
0013 #include <KJob>
0014 
0015 namespace OXA
0016 {
0017 class ObjectDeleteJob : public KJob
0018 {
0019     Q_OBJECT
0020 
0021 public:
0022     explicit ObjectDeleteJob(const Object &object, QObject *parent = nullptr);
0023 
0024     void start() override;
0025 
0026 private:
0027     void davJobFinished(KJob *);
0028     Object mObject;
0029 };
0030 }