[Windows] Fix driver version detection of AMD RDNA+ GPU on Windows 10
[xbmc.git] / xbmc / music / jobs / MusicLibraryProgressJob.h
blobae843daa536837b7356d83a4eb05c9437bf39e66
1 /*
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.
7 */
9 #pragma once
11 #include "music/jobs/MusicLibraryJob.h"
12 #include "utils/ProgressJob.h"
14 /*!
15 \brief Combined base implementation of a music library job with a progress bar.
17 class CMusicLibraryProgressJob : public CProgressJob, public CMusicLibraryJob
19 public:
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; }
27 protected:
28 explicit CMusicLibraryProgressJob(CGUIDialogProgressBarHandle* progressBar);