File indexing completed on 2024-11-24 04:44:29
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 <KJob> 0012 0013 #include "object.h" 0014 0015 namespace OXA 0016 { 0017 class ObjectRequestJob : public KJob 0018 { 0019 Q_OBJECT 0020 0021 public: 0022 explicit ObjectRequestJob(const Object &object, QObject *parent = nullptr); 0023 0024 void start() override; 0025 0026 [[nodiscard]] Object object() const; 0027 0028 private: 0029 void davJobFinished(KJob *); 0030 Object mObject; 0031 }; 0032 }