File indexing completed on 2024-04-28 04:20:53

0001 /* SPDX-FileCopyrightText: 2012 Jesper K. Pedersen <blackie@kde.org>
0002 
0003    SPDX-License-Identifier: GPL-2.0-only OR GPL-3.0-only OR LicenseRef-KDE-Accepted-GPL
0004 */
0005 
0006 #ifndef BACKGROUNDTASKS_COMPLETEDJOBINFO_H
0007 #define BACKGROUNDTASKS_COMPLETEDJOBINFO_H
0008 
0009 #include "JobInfo.h"
0010 namespace BackgroundTaskManager
0011 {
0012 
0013 class CompletedJobInfo : public JobInfo
0014 {
0015 public:
0016     explicit CompletedJobInfo(JobInfo *other);
0017     QString title() const override;
0018     QString details() const override;
0019 
0020 private:
0021     QString m_title;
0022     QString m_details;
0023 };
0024 
0025 } // namespace BackgroundTaskManager
0026 
0027 #endif // BACKGROUNDTASKS_COMPLETEDJOBINFO_H
0028 // vi:expandtab:tabstop=4 shiftwidth=4: