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/MusicLibraryJob.h"
12 #include "utils/ProgressJob.h"
15 \brief Combined base implementation of a music library job with a progress bar.
17 class CMusicLibraryProgressJob
: public CProgressJob
, public CMusicLibraryJob
20 ~CMusicLibraryProgressJob() override
;
22 // implementation of CJob
23 bool DoWork() override
;
24 const char *GetType() const override
{ return "CMusicLibraryProgressJob"; }
25 bool operator==(const CJob
* job
) const override
{ return false; }
28 explicit CMusicLibraryProgressJob(CGUIDialogProgressBarHandle
* progressBar
);