Start adding support for playlist and progress on downloading songs
[groove] / playlist.h
diff --git a/playlist.h b/playlist.h
new file mode 100644 (file)
index 0000000..d33386b
--- /dev/null
@@ -0,0 +1,23 @@
+#ifndef PLAYLIST_H
+#define PLAYLIST_H
+
+#include <QObject>
+#include <QStandardItem>
+
+class playlist : public QObject
+{
+    Q_OBJECT
+public:
+    explicit playlist(QObject *parent = 0);
+    void addSong(QStandardItem item);
+    QList<QStandardItem *> getPlaylist();
+    void removeSong(int position);
+
+
+signals:
+
+public slots:
+
+};
+
+#endif // PLAYLIST_H