Start adding support for playlist and progress on downloading songs
[groove] / playlist.h
1 #ifndef PLAYLIST_H
2 #define PLAYLIST_H
3
4 #include <QObject>
5 #include <QStandardItem>
6
7 class playlist : public QObject
8 {
9     Q_OBJECT
10 public:
11     explicit playlist(QObject *parent = 0);
12     void addSong(QStandardItem item);
13     QList<QStandardItem *> getPlaylist();
14     void removeSong(int position);
15
16
17 signals:
18
19 public slots:
20
21 };
22
23 #endif // PLAYLIST_H