blob: 181758968beea6c6f6fd82b482003678fe27d4e9 (
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
|
/*
* Copyright (C) 2005-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 "addons/Scraper.h"
#include "music/Artist.h"
class CXBMCTinyXML;
class CScraperUrl;
namespace MUSIC_GRABBER
{
class CMusicArtistInfo
{
public:
CMusicArtistInfo() = default;
CMusicArtistInfo(const std::string& strArtist, const CScraperUrl& strArtistURL);
virtual ~CMusicArtistInfo() = default;
bool Loaded() const { return m_bLoaded; }
void SetLoaded() { m_bLoaded = true; }
void SetArtist(const CArtist& artist);
const CArtist& GetArtist() const { return m_artist; }
CArtist& GetArtist() { return m_artist; }
const CScraperUrl& GetArtistURL() const { return m_artistURL; }
bool Load(XFILE::CCurlFile& http, const ADDON::ScraperPtr& scraper,
const std::string &strSearch);
protected:
CArtist m_artist;
CScraperUrl m_artistURL;
bool m_bLoaded = false;
};
}
|