1 /*
2     This file is part of the Kasten Framework, made within the KDE community.
3 
4     SPDX-FileCopyrightText: 2008, 2011 Friedrich W. H. Kossebau <kossebau@kde.org>
5 
6     SPDX-License-Identifier: LGPL-2.1-only OR LGPL-3.0-only OR LicenseRef-KDE-Accepted-LGPL
7 */
8 
9 #ifndef KASTEN_JOBMANAGER_HPP
10 #define KASTEN_JOBMANAGER_HPP
11 
12 // lib
13 #include "kastencore_export.hpp"
14 
15 class KJob;
16 
17 namespace Kasten {
18 
19 class KASTENCORE_EXPORT JobManager
20 {
21 public:
22     // temporary, remove quickly
23     static bool executeJob(KJob* job);
24 
25 public:
26 };
27 
28 }
29 
30 #endif
31