File indexing completed on 2024-11-10 05:16:50
0001 /* 0002 This file is part of the Kasten Framework, made within the KDE community. 0003 0004 SPDX-FileCopyrightText: 2008-2009 Friedrich W. H. Kossebau <kossebau@kde.org> 0005 0006 SPDX-License-Identifier: LGPL-2.1-only OR LGPL-3.0-only OR LicenseRef-KDE-Accepted-LGPL 0007 */ 0008 0009 #ifndef KASTEN_ABSTRACTSYNCWITHREMOTEJOB_HPP 0010 #define KASTEN_ABSTRACTSYNCWITHREMOTEJOB_HPP 0011 0012 // lib 0013 #include "kastencore_export.hpp" 0014 // KF 0015 #include <KJob> 0016 // Std 0017 #include <memory> 0018 0019 namespace Kasten { 0020 0021 class AbstractSyncWithRemoteJobPrivate; 0022 0023 class KASTENCORE_EXPORT AbstractSyncWithRemoteJob : public KJob 0024 { 0025 Q_OBJECT 0026 0027 protected: 0028 KASTENCORE_NO_EXPORT explicit AbstractSyncWithRemoteJob(AbstractSyncWithRemoteJobPrivate* d); 0029 0030 public: 0031 AbstractSyncWithRemoteJob(); 0032 0033 ~AbstractSyncWithRemoteJob() override; 0034 0035 protected: 0036 const std::unique_ptr<AbstractSyncWithRemoteJobPrivate> d_ptr; 0037 }; 0038 0039 } 0040 0041 #endif