21#ifndef LFMCOVERFETCHER_H
22#define LFMCOVERFETCHER_H
24#include "CoverFetcher.h"
26namespace Cover::Fetcher
32 [[nodiscard]] QString privateIdentifier()
const override;
36 [[nodiscard]] QStringList
parseAddresses(
const QByteArray& website)
const override;
37 [[nodiscard]] QString
albumAddress(
const QString& artist,
const QString& album)
const override;
38 [[nodiscard]] QString
artistAddress(
const QString& artist)
const override;
Definition Audioscrobbler.h:30
QString albumAddress(const QString &artist, const QString &album) const override
Get the album search url. This is called if is_album_supported returns true.
bool canFetchCoverDirectly() const override
Can the cover be fetched from the adress without starting a two-stage query?
QStringList parseAddresses(const QByteArray &website) const override
Get addresses from the downloaded website. If can_fetch_cover_directly returns true,...
int estimatedSize() const override
get_estimated_size. Rough image size of the CoverFetchInterface
QString artistAddress(const QString &artist) const override
Get the artist search url. This is called if is_artist_supported returns true.
The CoverFetcherInterface interface.
Definition CoverFetcher.h:35