File indexing completed on 2024-04-28 15:39:47

0001 /* SPDX-FileCopyrightText: 2012 Jesper K. Pedersen <blackie@kde.org>
0002 
0003    SPDX-License-Identifier: GPL-2.0-or-later
0004 */
0005 
0006 #ifndef SEARCHFORVIDEOSWITHOUTLENGTHINFO_H
0007 #define SEARCHFORVIDEOSWITHOUTLENGTHINFO_H
0008 
0009 #include <BackgroundTaskManager/JobInterface.h>
0010 
0011 namespace BackgroundJobs
0012 {
0013 
0014 /**
0015   \brief Search for videos for which the database still has no length information
0016   \see \ref videothumbnails
0017 */
0018 class SearchForVideosWithoutLengthInfo : public BackgroundTaskManager::JobInterface
0019 {
0020 public:
0021     SearchForVideosWithoutLengthInfo();
0022     void execute() override;
0023     QString title() const override;
0024     QString details() const override;
0025 };
0026 
0027 }
0028 
0029 #endif // SEARCHFORVIDEOSWITHOUTLENGTHINFO_H
0030 // vi:expandtab:tabstop=4 shiftwidth=4: