2 * Copyright (C) 2017-2018 Team Kodi
3 * This file is part of Kodi - https://kodi.tv
5 * SPDX-License-Identifier: GPL-2.0-or-later
6 * See LICENSES/README.md for more information.
11 #include "music/jobs/MusicLibraryProgressJob.h"
16 \brief Music library job implementation for cleaning the video library.
18 class CMusicLibraryCleaningJob
: public CMusicLibraryProgressJob
22 \brief Creates a new music library cleaning job.
23 \param[in] progressDialog Progress dialog to be used to display the cleaning progress
25 CMusicLibraryCleaningJob(CGUIDialogProgress
* progressDialog
);
26 ~CMusicLibraryCleaningJob() override
;
28 // specialization of CJob
29 const char *GetType() const override
{ return "MusicLibraryCleaningJob"; }
30 bool operator==(const CJob
* job
) const override
;
33 // implementation of CMusicLibraryJob
34 bool Work(CMusicDatabase
&db
) override
;