blob: bcca44f24542f3e697ad488b5c67ce08672dc75d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
|
/*
* Copyright (C) 2017-2018 Team Kodi
* This file is part of Kodi - https://kodi.tv
*
* SPDX-License-Identifier: GPL-2.0-or-later
* See LICENSES/README.md for more information.
*/
#pragma once
#include "MusicLibraryProgressJob.h"
class CGUIDialogProgress;
/*!
\brief Music library job implementation for importing data to the music library.
*/
class CMusicLibraryImportJob : public CMusicLibraryProgressJob
{
public:
/*!
\brief Creates a new music library import job for the given xml file.
\param[in] xmlFile xml file to import
\param[in] progressDialog Progress dialog to be used to display the import progress
*/
CMusicLibraryImportJob(const std::string &xmlFile, CGUIDialogProgress* progressDialog);
~CMusicLibraryImportJob() override;
// specialization of CJob
const char *GetType() const override { return "MusicLibraryImportJob"; }
bool operator==(const CJob* job) const override;
protected:
// implementation of CMusicLibraryJob
bool Work(CMusicDatabase &db) override;
private:
std::string m_xmlFile;
};
|