Add tidal cover provider

This commit is contained in:
Jonas Kvinge
2019-04-14 16:40:05 +02:00
parent 36dccc8157
commit 1ad163aac3
20 changed files with 404 additions and 23 deletions

View File

@@ -23,7 +23,8 @@
#include <QObject>
#include <QString>
#include "core/application.h"
#include "coverprovider.h"
CoverProvider::CoverProvider(const QString &name, const bool &fetchall, QObject *parent)
: QObject(parent), name_(name), fetchall_(fetchall) {}
CoverProvider::CoverProvider(const QString &name, const bool &fetchall, Application *app, QObject *parent)
: QObject(parent), app_(app), name_(name), fetchall_(fetchall) {}