2010-05-10 16:19:43 +02:00
|
|
|
#ifndef MAGNATUNEPLAYLISTITEM_H
|
|
|
|
#define MAGNATUNEPLAYLISTITEM_H
|
|
|
|
|
2010-05-10 23:50:31 +02:00
|
|
|
#include "library/libraryplaylistitem.h"
|
2010-05-10 16:19:43 +02:00
|
|
|
|
|
|
|
class MagnatunePlaylistItem : public LibraryPlaylistItem {
|
|
|
|
public:
|
|
|
|
MagnatunePlaylistItem(const QString& type);
|
|
|
|
MagnatunePlaylistItem(const Song& song);
|
|
|
|
|
2010-08-03 20:57:17 +02:00
|
|
|
bool InitFromQuery(const SqlRow& query);
|
2010-05-18 22:51:33 +02:00
|
|
|
|
2010-06-09 00:56:31 +02:00
|
|
|
Options options() const;
|
|
|
|
|
2010-05-18 22:51:33 +02:00
|
|
|
QUrl Url() const;
|
2010-06-09 00:56:31 +02:00
|
|
|
SpecialLoadResult StartLoading();
|
2010-05-10 16:19:43 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif // MAGNATUNEPLAYLISTITEM_H
|